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