minOf

Common
JVM
JS
Native
1.4
inline fun <T> Array<out T>.minOf(
    selector: (T) -> Double
): Double

(source)
inline fun ByteArray.minOf(
    selector: (Byte) -> Double
): Double

(source)
inline fun ShortArray.minOf(
    selector: (Short) -> Double
): Double

(source)
inline fun IntArray.minOf(selector: (Int) -> Double): Double
(source)
inline fun LongArray.minOf(
    selector: (Long) -> Double
): Double

(source)
inline fun FloatArray.minOf(
    selector: (Float) -> Double
): Double

(source)
inline fun DoubleArray.minOf(
    selector: (Double) -> Double
): Double

(source)
inline fun BooleanArray.minOf(
    selector: (Boolean) -> Double
): Double

(source)
inline fun CharArray.minOf(
    selector: (Char) -> Double
): Double

(source)
inline fun <T> Array<out T>.minOf(
    selector: (T) -> Float
): Float

(source)
inline fun ByteArray.minOf(selector: (Byte) -> Float): Float
(source)
inline fun ShortArray.minOf(
    selector: (Short) -> Float
): Float

(source)
inline fun IntArray.minOf(selector: (Int) -> Float): Float
(source)
inline fun LongArray.minOf(selector: (Long) -> Float): Float
(source)
inline fun FloatArray.minOf(
    selector: (Float) -> Float
): Float

(source)
inline fun DoubleArray.minOf(
    selector: (Double) -> Float
): Float

(source)
inline fun BooleanArray.minOf(
    selector: (Boolean) -> Float
): Float

(source)
inline fun CharArray.minOf(selector: (Char) -> Float): Float
(source)
@ExperimentalUnsignedTypes inline fun UIntArray.minOf(
    selector: (UInt) -> Double
): Double

(source)
@ExperimentalUnsignedTypes inline fun ULongArray.minOf(
    selector: (ULong) -> Double
): Double

(source)
@ExperimentalUnsignedTypes inline fun UByteArray.minOf(
    selector: (UByte) -> Double
): Double

(source)
@ExperimentalUnsignedTypes inline fun UShortArray.minOf(
    selector: (UShort) -> Double
): Double

(source)
@ExperimentalUnsignedTypes inline fun UIntArray.minOf(
    selector: (UInt) -> Float
): Float

(source)
@ExperimentalUnsignedTypes inline fun ULongArray.minOf(
    selector: (ULong) -> Float
): Float

(source)
@ExperimentalUnsignedTypes inline fun UByteArray.minOf(
    selector: (UByte) -> Float
): Float

(source)
@ExperimentalUnsignedTypes inline fun UShortArray.minOf(
    selector: (UShort) -> Float
): Float

(source)

Returns the smallest value among all values produced by selector function applied to each element in the array.

If any of values produced by selector function is NaN, the returned result is NaN.

Exceptions

NoSuchElementException - if the array is empty.

Common
JVM
JS
Native
1.4
inline fun <T, R : Comparable<R>> Array<out T>.minOf(
    selector: (T) -> R
): R

(source)
inline fun <R : Comparable<R>> ByteArray.minOf(
    selector: (Byte) -> R
): R

(source)
inline fun <R : Comparable<R>> ShortArray.minOf(
    selector: (Short) -> R
): R

(source)
inline fun <R : Comparable<R>> IntArray.minOf(
    selector: (Int) -> R
): R

(source)
inline fun <R : Comparable<R>> LongArray.minOf(
    selector: (Long) -> R
): R

(source)
inline fun <R : Comparable<R>> FloatArray.minOf(
    selector: (Float) -> R
): R

(source)
inline fun <R : Comparable<R>> DoubleArray.minOf(
    selector: (Double) -> R
): R

(source)
inline fun <R : Comparable<R>> BooleanArray.minOf(
    selector: (Boolean) -> R
): R

(source)
inline fun <R : Comparable<R>> CharArray.minOf(
    selector: (Char) -> R
): R

(source)
@ExperimentalUnsignedTypes inline fun <R : Comparable<R>> UIntArray.minOf(
    selector: (UInt) -> R
): R

(source)
@ExperimentalUnsignedTypes inline fun <R : Comparable<R>> ULongArray.minOf(
    selector: (ULong) -> R
): R

(source)
@ExperimentalUnsignedTypes inline fun <R : Comparable<R>> UByteArray.minOf(
    selector: (UByte) -> R
): R

(source)
@ExperimentalUnsignedTypes inline fun <R : Comparable<R>> UShortArray.minOf(
    selector: (UShort) -> R
): R

(source)

Returns the smallest value among all values produced by selector function applied to each element in the array.

Exceptions

NoSuchElementException - if the array is empty.

Common
JVM
JS
Native
1.4
inline fun <T> Iterable<T>.minOf(
    selector: (T) -> Double
): Double

(source)
inline fun <T> Iterable<T>.minOf(
    selector: (T) -> Float
): Float

(source)

Returns the smallest value among all values produced by selector function applied to each element in the collection.

If any of values produced by selector function is NaN, the returned result is NaN.

Exceptions

NoSuchElementException - if the collection is empty.

Common
JVM
JS
Native
1.4
inline fun <T, R : Comparable<R>> Iterable<T>.minOf(
    selector: (T) -> R
): R

(source)

Returns the smallest value among all values produced by selector function applied to each element in the collection.

Exceptions

NoSuchElementException - if the collection is empty.

Common
JVM
JS
Native
1.4
inline fun <K, V> Map<out K, V>.minOf(
    selector: (Entry<K, V>) -> Double
): Double

(source)
inline fun <K, V> Map<out K, V>.minOf(
    selector: (Entry<K, V>) -> Float
): Float

(source)

Returns the smallest value among all values produced by selector function applied to each entry in the map.

If any of values produced by selector function is NaN, the returned result is NaN.

Exceptions

NoSuchElementException - if the map is empty.

Common
JVM
JS
Native
1.4
inline fun <K, V, R : Comparable<R>> Map<out K, V>.minOf(
    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.

Exceptions

NoSuchElementException - if the map is empty.