Creating & Conversion
10Coerce to char
functionclojure.core
Formats a string using java.lang.String.format, see java.util.Formatter for format string syntax
functionclojure.core
Returns a Keyword with the given namespace and name. Do not use : in the keyword strings, it will be added automatica...
functionclojure.core
Returns the name String of a string, symbol or keyword.
functionclojure.core
Parse strings "true" or "false" and return a boolean, or nil if invalid
functionclojure.core
Parse string with floating point components and return a Double value, or nil if parse fails. Grammar: https://docs...
functionclojure.core
Parse string of decimal digits with optional leading -/+ and return a Long value, or nil if parse fails
functionclojure.core
Parse a string representing a UUID and return a java.util.UUID instance, or nil if parse fails. Grammar: https://do...
functionclojure.core
With no args, returns the empty string. With one arg x, returns x.toString(). (str nil) returns the empty string. Wit...
functionclojure.core
Returns a Symbol with the given namespace and name. Arity-1 works on strings, keywords, and vars.
functionclojure.core