Skip to content

iter::max

max(items)

ParameterTypeDescription
itemsIterable

Returns

(*) The lowest value in the Iterable.

Example

elk
[1, 2, 3] | max #=> [2, 3, 4]
[1, 2, 3] | max #=> [2, 3, 4]