maximum(items)highest Type: For any types t where Comparable t([t]) -> t

Gets the highest item in the list.

Highest is determined in the same way as operator < -- see the documentation for more details.

ExamplesClick an example to insert it
maximum([54, 7, 82])82
maximum(["zebra", "wolf", "vole"])"zebra"
maximum([])error
See Alsominimum(..)operator <