ClojureDocs

导航

命名空间

str

clojure.core

自 1.0 起可用 (源代码)
  • (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.