Liking cljdoc? Tell your friends :D

hara.common.string


from-stringcljmultimethod

meta information of keywords and symbols

(from-string {:type clojure.lang.Symbol} "hello/world") => 'hello/world

(from-string {:type clojure.lang.Keyword} "hello/world") => :hello/world

meta information of keywords and symbols

(from-string {:type clojure.lang.Symbol} "hello/world")
=> 'hello/world

(from-string {:type clojure.lang.Keyword} "hello/world")
=> :hello/world
raw docstring

to-metaclj

(to-meta x)

meta information of keywords and symbols

(to-meta 'hello/world) => {:type clojure.lang.Symbol}

(to-meta :hello/world) => {:type clojure.lang.Keyword}

meta information of keywords and symbols

(to-meta 'hello/world)
=> {:type clojure.lang.Symbol}

(to-meta :hello/world)
=> {:type clojure.lang.Keyword}
raw docstring

to-stringclj

(to-string x)

converts symbols and keywords to string representation

(to-string 'hello/world) => "hello/world"

(to-string :hello/world) => "hello/world"

converts symbols and keywords to string representation

(to-string 'hello/world)
=> "hello/world"

(to-string :hello/world)
=> "hello/world"
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close