maximumBy

The largest element of a non-empty structure with respect to the given comparison function. Structure order is used as a tie-breaker: if there are multiple largest elements, the rightmost of them is chosen.

Examples

Basic usage:
>>> maximumBy (compare `on` length) ["Hello", "World", "!", "Longest", "bar"]
"Longest"
WARNING: This function is partial for possibly-empty structures like lists.
The largest element of a non-empty structure with respect to the given comparison function. Structure order is used as a tie-breaker: if there are multiple largest elements, the rightmost of them is chosen.
Computes the maximum element with respect to the given comparison function
Computes the maximum element with respect to the given comparison function
The largest element of a non-empty structure with respect to the given comparison function.

Examples

Basic usage:
>>> maximumBy (compare `on` length) ["Hello", "World", "!", "Longest", "bar"]
"Longest"
WARNING: This function is partial for possibly-empty structures like lists.
The largest element of a non-empty structure with respect to the given comparison function.
O(n) Yield the maximum element of the vector according to the given comparison function. The vector may not be empty.
O(n) Yield the maximum element of the vector according to the given comparison function. The vector may not be empty.
O(n) Yield the maximum element of the vector according to the given comparison function. The vector may not be empty.
O(n) Yield the maximum element of the vector according to the given comparison function. The vector may not be empty.
Get the maximum element of a monomorphic container, using a supplied element ordering function. Safe version of maximumByEx, only works on monomorphic containers wrapped in a NonNull.
maximumBy is a total function
Determine the maximum element in a stream using the supplied comparison function.
maximumBy = Stream.fold Fold.maximumBy
The largest element of a structure with respect to the given comparison function.
The largest element of a NonEmpty with respect to the given comparison function.
O(n) Yield the maximum element of the non-empty vector according to the given comparison function.
O(n) Yield the maximum element of the non-empty vector according to the given comparison function.
O(n) Yield the maximum element of the non-empty vector according to the given comparison function.
O(n) Yield the maximum element of the non-empty vector according to the given comparison function.
O(n) Yield the maximum element of the non-empty vector according to the given comparison function.
Determine the maximum element in a stream using the supplied comparison function.
The largest element of a non-empty structure with respect to the given comparison function.