min Of With
inline fun <R> CharSequence.minOfWith(comparator: Comparator<in R>, selector: (Char) -> R): R
Content copied to clipboard
Returns the smallest value according to the provided comparator among all values produced by selector function applied to each character in the char sequence.
Since Kotlin
1.4
Throws
if the char sequence is empty.