minWith

@DeprecatedSinceKotlin(warningSince = "1.4", errorSince = "1.5")
fun <T> Array<out T>.minWith(comparator: Comparator<in T>): T?
@DeprecatedSinceKotlin(warningSince = "1.4", errorSince = "1.5")
fun ByteArray.minWith(comparator: Comparator<in Byte>): Byte?
@DeprecatedSinceKotlin(warningSince = "1.4", errorSince = "1.5")
fun ShortArray.minWith(comparator: Comparator<in Short>): Short?
@DeprecatedSinceKotlin(warningSince = "1.4", errorSince = "1.5")
fun IntArray.minWith(comparator: Comparator<in Int>): Int?
@DeprecatedSinceKotlin(warningSince = "1.4", errorSince = "1.5")
fun LongArray.minWith(comparator: Comparator<in Long>): Long?
@DeprecatedSinceKotlin(warningSince = "1.4", errorSince = "1.5")
fun FloatArray.minWith(comparator: Comparator<in Float>): Float?
@DeprecatedSinceKotlin(warningSince = "1.4", errorSince = "1.5")
fun DoubleArray.minWith(comparator: Comparator<in Double>): Double?
@DeprecatedSinceKotlin(warningSince = "1.4", errorSince = "1.5")
fun BooleanArray.minWith(comparator: Comparator<in Boolean>): Boolean?
@DeprecatedSinceKotlin(warningSince = "1.4", errorSince = "1.5")
fun CharArray.minWith(comparator: Comparator<in Char>): Char?
@DeprecatedSinceKotlin(warningSince = "1.4", errorSince = "1.5")
fun <T> Iterable<T>.minWith(comparator: Comparator<in T>): T?
@DeprecatedSinceKotlin(warningSince = "1.4", errorSince = "1.5")
fun <K, V> Map<out K, V>.minWith(comparator: Comparator<in Map.Entry<K, V>>): Map.Entry<K, V>?
@DeprecatedSinceKotlin(warningSince = "1.4", errorSince = "1.5")
fun UIntArray.minWith(comparator: Comparator<in UInt>): UInt?
@DeprecatedSinceKotlin(warningSince = "1.4", errorSince = "1.5")
fun ULongArray.minWith(comparator: Comparator<in ULong>): ULong?
@DeprecatedSinceKotlin(warningSince = "1.4", errorSince = "1.5")
fun UByteArray.minWith(comparator: Comparator<in UByte>): UByte?
@DeprecatedSinceKotlin(warningSince = "1.4", errorSince = "1.5")
fun UShortArray.minWith(comparator: Comparator<in UShort>): UShort?