ClojureDocs

Nav

Namespaces

str

clojure.core

Available since 1.0 (source)
  • (str)
  • (str x)
  • (str x & ys)
With no args, returns the empty string. With one arg x, returns
x.toString().  (str nil) returns the empty string. With more than
one arg, returns the concatenation of the str values of the args.