(keyword-reverse k)
reverses the keyword by either adding or removing '_' in the value (keyword-reverse :a/b) => :a/_b (keyword-reverse :a/_b) => :a/b (keyword-reverse :b) => (throws Exception)
reverses the keyword by either adding or removing '_' in the value (keyword-reverse :a/b) => :a/_b (keyword-reverse :a/_b) => :a/b (keyword-reverse :b) => (throws Exception)
(keyword-reversed? k)
checks whether the keyword is reversed (begins with '_') (keyword-reversed? :a) => false (keyword-reversed? :a/b) => false (keyword-reversed? :a/_b) => true
checks whether the keyword is reversed (begins with '_') (keyword-reversed? :a) => false (keyword-reversed? :a/b) => false (keyword-reversed? :a/_b) => true
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close