W3cubDocs

/Kotlin

maxByOrNull

Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)
inline fun <R : Comparable<R>> CharSequence.maxByOrNull(
    selector: (Char) -> R
): Char?

Returns the first character yielding the largest value of the given function or null if there are no characters.

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
val nameToAge = listOf("Alice" to 42, "Bob" to 28, "Carol" to 51)
val oldestPerson = nameToAge.maxByOrNull { it.second }
println(oldestPerson) // (Carol, 51)

val emptyList = emptyList<Pair<String, Int>>()
val emptyMax = emptyList.maxByOrNull { it.second }
println(emptyMax) // null
//sampleEnd
}

© 2010–2020 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.text/max-by-or-null.html