Skip to content
The Elk Shell Language
Search
K
Main Navigation
Reference
Standard Library
GitHub
Appearance
GitHub
Menu
Return to top
On this page
Table of Contents for current page
iter::max
max(items)
Parameter
Type
Description
items
Iterable
Returns
(*) The lowest value in the Iterable.
Example
elk
[
1
,
2
,
3
] | max
#=> [2, 3, 4]
[
1
,
2
,
3
] | max
#=> [2, 3, 4]