maxOf
@ExperimentalUnsignedTypes inline fun ULongArray.maxOf(
selector: (ULong) -> Double
): Double
(source)
@ExperimentalUnsignedTypes inline fun UByteArray.maxOf(
selector: (UByte) -> Double
): Double
(source)
@ExperimentalUnsignedTypes inline fun UShortArray.maxOf(
selector: (UShort) -> Double
): Double
(source)
@ExperimentalUnsignedTypes inline fun UShortArray.maxOf(
selector: (UShort) -> Float
): Float
(source)
@ExperimentalUnsignedTypes inline fun <R : Comparable<R>> UIntArray.maxOf(
selector: (UInt) -> R
): R
(source)
@ExperimentalUnsignedTypes inline fun <R : Comparable<R>> ULongArray.maxOf(
selector: (ULong) -> R
): R
(source)
@ExperimentalUnsignedTypes inline fun <R : Comparable<R>> UByteArray.maxOf(
selector: (UByte) -> R
): R
(source)
@ExperimentalUnsignedTypes inline fun <R : Comparable<R>> UShortArray.maxOf(
selector: (UShort) -> R
): R
(source)
Returns the largest value among all values produced by selector function applied to each element in the array.
Exceptions
Returns the largest value among all values produced by selector function applied to each element in the collection.
Exceptions
Returns the largest value among all values produced by selector function applied to each entry in the map.