October 2018
Intermediate to advanced
370 pages
9h 15m
English
The max function returns the largest value of the list. The maxBy function takes a lambda expression with one value. We can pass a negative value to the lambda expression to get the smallest value in the list, as follows:
println("Get max value ${numbers.max()}")println("Get min value ${numbers.maxBy { -it }}")
Read now
Unlock full access