minWith

@JvmName(name = "minWithOrThrow")
fun CharSequence.minWith(comparator: Comparator<in Char>): Char(source)

Returns the first character having the smallest value according to the provided comparator.

Since Kotlin

1.7

Throws

if the char sequence is empty.

fun CharSequence.minWith(comparator: Comparator<in Char>): Char?(source)

Deprecated

Warning since 1.4

Error since 1.5

Hidden since 1.6

Use minWithOrNull instead.

Replace with

this.minWithOrNull(comparator)

Since Kotlin

1.0