map

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

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

Samples

import samples.*
import java.util.Locale
import kotlin.test.*
fun main() { 
   //sampleStart 
   val string = "kotlin"
assertPrints(string.map { it.uppercaseChar() }, "[K, O, T, L, I, N]") 
   //sampleEnd
}