String::join
Join items (a list of strings) with this string as a separator.
items
":".join(["a", "b", "c"]) //-> "a:b:c"
Source Codepublic method join(this: String, items: List<String>): String { __BUILTIN_IMPLEMENTATION }
public method join(this: String, items: List<String>): String { __BUILTIN_IMPLEMENTATION }