Garden 🌻

String::join

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

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