getOrElse

Common
JVM
JS
Native
1.0
inline fun CharSequence.getOrElse(
    index: Int,
    defaultValue: (Int) -> Char
): Char

Returns a character at the given index or the result of calling the defaultValue function if the index is out of bounds of this char sequence.