4 lines
96 B
Kotlin
4 lines
96 B
Kotlin
package blitz.str
|
|
|
|
fun Collection<Char>.charsToString(): String =
|
|
String(this.toCharArray()) |