cache for hara.string.base.impl/path-separator
cache for hara.string.base.impl/path-separator
(from-string string type)
(from-string string type opts)
converts a string to an object
(from-string "a" clojure.lang.Symbol) => 'a
(from-string "hara.string" clojure.lang.Namespace) => (find-ns 'hara.string)
converts a string to an object (from-string "a" clojure.lang.Symbol) => 'a (from-string "hara.string" clojure.lang.Namespace) => (find-ns 'hara.string)
(path-separator type)
returns the default path separator for an object
(path-separator clojure.lang.Namespace) => "."
(path-separator clojure.lang.Keyword) => "/"
returns the default path separator for an object (path-separator clojure.lang.Namespace) => "." (path-separator clojure.lang.Keyword) => "/"
(to-string string)
converts an object to a string
(to-string :hello/world) => "hello/world"
(to-string ns) => "hara.string.base.impl-test"
converts an object to a string (to-string :hello/world) => "hello/world" (to-string *ns*) => "hara.string.base.impl-test"
(wrap-compare f)
wraps a function so that it can compare any two string-like inputs
((wrap-compare =) :hello 'hello) => true
wraps a function so that it can compare any two string-like inputs ((wrap-compare =) :hello 'hello) => true
(wrap-op f return)
wraps a string function such that it can take any string-like input
((wrap-op str false) :hello 'hello) => :hellohello
((wrap-op str true) :hello 'hello) => "hellohello"
wraps a string function such that it can take any string-like input ((wrap-op str false) :hello 'hello) => :hellohello ((wrap-op str true) :hello 'hello) => "hellohello"
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close