minOfWithOrNull

inline fun <R> CharSequence.minOfWithOrNull(comparator: Comparator<in R>, selector: (Char) -> R): R?(source)

Returns the smallest value according to the provided comparator among all values produced by selector function applied to each character in the char sequence or null if the char sequence is empty.

If multiple characters produce the minimal value, this function returns the first of those values.

Since Kotlin

1.4

Samples