Garden 🌻

String::lines

Split this string into a list of lines.

"a\nb".lines() //-> ["a", "b"]
Source Codepublic method lines(this: String): List<String> {
  __BUILTIN_IMPLEMENTATION
}