map

inline fun <R> CharSequence.map(transform: (Char) -> R): List<R>(source)

Returns a list containing the results of applying the given transform function to each character in the original char sequence.

Since Kotlin

1.0

Samples