minOfWith

Common
JVM
JS
Native
1.4
inline fun <R> CharSequence.minOfWith(
    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.

Exceptions

NoSuchElementException - if the char sequence is empty.