minOfOrNull
@ExperimentalUnsignedTypes inline fun ULongArray.minOfOrNull(
selector: (ULong) -> Double
): Double?
(source)
@ExperimentalUnsignedTypes inline fun UByteArray.minOfOrNull(
selector: (UByte) -> Double
): Double?
(source)
@ExperimentalUnsignedTypes inline fun UShortArray.minOfOrNull(
selector: (UShort) -> Double
): Double?
(source)
@ExperimentalUnsignedTypes inline fun ULongArray.minOfOrNull(
selector: (ULong) -> Float
): Float?
(source)
@ExperimentalUnsignedTypes inline fun UByteArray.minOfOrNull(
selector: (UByte) -> Float
): Float?
(source)
@ExperimentalUnsignedTypes inline fun UShortArray.minOfOrNull(
selector: (UShort) -> Float
): Float?
(source)
@ExperimentalUnsignedTypes inline fun <R : Comparable<R>> UIntArray.minOfOrNull(
selector: (UInt) -> R
): R?
(source)
@ExperimentalUnsignedTypes inline fun <R : Comparable<R>> ULongArray.minOfOrNull(
selector: (ULong) -> R
): R?
(source)
@ExperimentalUnsignedTypes inline fun <R : Comparable<R>> UByteArray.minOfOrNull(
selector: (UByte) -> R
): R?
(source)
@ExperimentalUnsignedTypes inline fun <R : Comparable<R>> UShortArray.minOfOrNull(
selector: (UShort) -> R
): R?
(source)
Returns the smallest value among all values produced by selector function
applied to each element in the array or null
if there are no elements.
Returns the smallest value among all values produced by selector function
applied to each element in the collection or null
if there are no elements.
inline fun <K, V, R : Comparable<R>> Map<out K, V>.minOfOrNull(
selector: (Entry<K, V>) -> R
): R?
(source)
Returns the smallest value among all values produced by selector function
applied to each entry in the map or null
if there are no entries.