minOfOrNull
Returns the smallest value among all values produced by selector function applied to each element in the array or null
if there are no elements.
If any of values produced by selector function is NaN
, the returned result is NaN
.
Since Kotlin
1.4Returns the smallest value among all values produced by selector function applied to each element in the array or null
if there are no elements.
Since Kotlin
1.4Returns the smallest value among all values produced by selector function applied to each element in the collection or null
if there are no elements.
If any of values produced by selector function is NaN
, the returned result is NaN
.
Since Kotlin
1.4Returns the smallest value among all values produced by selector function applied to each element in the collection or null
if there are no elements.
Since Kotlin
1.4Returns the smallest value among all values produced by selector function applied to each entry in the map or null
if there are no entries.
If any of values produced by selector function is NaN
, the returned result is NaN
.
Since Kotlin
1.4Returns the smallest value among all values produced by selector function applied to each entry in the map or null
if there are no entries.