min

fun Sequence<Double>.min(): Double?(source)
fun Sequence<Float>.min(): Float?(source)

Deprecated

Use minOrNull instead.

Replace with

this.minOrNull()

Since Kotlin

1.1

fun <T : Comparable<T>> Sequence<T>.min(): T?(source)

Deprecated

Use minOrNull instead.

Replace with

this.minOrNull()

Since Kotlin

1.0