``` /** * Returns the first element yielding the ...
# announcements
t
Copy code
/**
 * Returns the first element yielding the largest value of the given function or `null` if there are no elements.
 */
public inline fun <T, R : Comparable<R>> Iterable<T>.maxBy(selector: (T) -> R): T? {
c
I'd think so, yes.