kotlin-stdlib / kotlin.sequences / minOrNull minOrNull Common JVM JS Native 1.4 fun Sequence<Double>.minOrNull(): Double?(source) fun Sequence<Float>.minOrNull(): Float?(source) Returns the smallest element or null if there are no elements. If any of elements is NaN returns NaN. The operation is terminal. Common JVM JS Native 1.4 fun <T : Comparable<T>> Sequence<T>.minOrNull(): T?(source) Returns the smallest element or null if there are no elements. The operation is terminal.