findLast
inline fun CharSequence.findLast(
predicate: (Char) -> Boolean
): Char?
Returns the last character matching the given predicate, or null
if no such character was found.
inline fun CharSequence.findLast(
predicate: (Char) -> Boolean
): Char?
Returns the last character matching the given predicate, or null
if no such character was found.