maxOrNull

Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)
fun Array<out Double>.maxOrNull(): Double?
fun Array<out Float>.maxOrNull(): Float?
fun FloatArray.maxOrNull(): Float?
fun DoubleArray.maxOrNull(): Double?
fun Iterable<Double>.maxOrNull(): Double?
fun Iterable<Float>.maxOrNull(): Float?

Returns the largest element or null if there are no elements.

If any of elements is NaN returns NaN.

Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)
fun <T : Comparable<T>> Array<out T>.maxOrNull(): T?
fun ByteArray.maxOrNull(): Byte?
fun ShortArray.maxOrNull(): Short?
fun IntArray.maxOrNull(): Int?
fun LongArray.maxOrNull(): Long?
fun CharArray.maxOrNull(): Char?
fun <T : Comparable<T>> Iterable<T>.maxOrNull(): T?
@ExperimentalUnsignedTypes fun UIntArray.maxOrNull(): UInt?
@ExperimentalUnsignedTypes fun ULongArray.maxOrNull(): ULong?
@ExperimentalUnsignedTypes fun UByteArray.maxOrNull(): UByte?
@ExperimentalUnsignedTypes fun UShortArray.maxOrNull(): UShort?

Returns the largest element or null if there are no elements.

© 2010–2021 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/max-or-null.html