maximum
maximum returns the maximum value from a list, which must be non-empty, finite, and of an ordered type. It is a special case of maximumBy, which allows the programmer to supply their own comparison function.
The largest element of a non-empty structure.
The maximumBy function takes a comparison function and a list and returns the greatest element of the list by the comparison function. The list must be finite and non-empty.
The largest element of a non-empty structure with respect to the given comparison function.
O(n) maximum returns the maximum value from a ByteString This function will fuse. An exception will be thrown in the case of an empty ByteString.
O(n) maximum returns the maximum value from a Text, which must be non-empty. Subject to fusion.