max

Deprecated

Warning since 1.4

Error since 1.5

Hidden since 1.6

Use maxOrNull instead.

Replace with

this.maxOrNull()

Since Kotlin

1.1

fun <T : Comparable<T>> Array<out T>.max(): T?(source)
fun <T : Comparable<T>> Iterable<T>.max(): T?(source)

Deprecated

Warning since 1.4

Error since 1.5

Hidden since 1.6

Use maxOrNull instead.

Replace with

this.maxOrNull()

Since Kotlin

1.0

@ExperimentalUnsignedTypes
fun UIntArray.max(): UInt?(source)
@ExperimentalUnsignedTypes
fun ULongArray.max(): ULong?(source)
@ExperimentalUnsignedTypes
fun UByteArray.max(): UByte?(source)
@ExperimentalUnsignedTypes
fun UShortArray.max(): UShort?(source)

Deprecated

Warning since 1.4

Error since 1.5

Hidden since 1.6

Use maxOrNull instead.

Replace with

this.maxOrNull()

Since Kotlin

1.3