uce/doc/pages/join.txt
2022-01-21 09:10:38 +00:00

14 lines
279 B
Plaintext

:sig
String join(StringList l, String delim = "\n")
:params
l : list of strings to be joined
delim : delimiter (defaults to newline character)
return value : a string containing items joined by 'delim'
:desc
Joins the items contained in 'l' into a single String.
:see
>string