maxWith

@JvmName(name = "maxWithOrThrow")
fun <T> Sequence<T>.maxWith(comparator: Comparator<in T>): T(source)

Returns the first element having the largest value according to the provided comparator.

The operation is terminal.

Since Kotlin

1.7

Throws

if the sequence is empty.

fun <T> Sequence<T>.maxWith(comparator: Comparator<in T>): T?(source)

Deprecated

Warning since 1.4

Error since 1.5

Hidden since 1.6

Use maxWithOrNull instead.

Replace with

this.maxWithOrNull(comparator)

Since Kotlin

1.0