Garden 🌻

String::join()

Join items (a list of strings) with this string as a separator.

Example
":".join(["a", "b", "c"]) //-> "a:b:c"
Source Code
public method join(this: String, items: List<String>): String {
  __BUILT_IN_IMPLEMENTATION
}