VocabularysequencesInputsOutputsWord descriptionOutputs the greatest element of
seq according to the
quot.
ExamplesExample:
USING: sequences prettyprint ;
{ { 1 2 } { 1 2 3 } { 1 2 3 4 } } [ length ] maximum-by .
{ 1 2 3 4 }
ErrorsThrows an error if the sequence is empty.
See alsomin,
max,
minimum,
minimum-by,
maximumDefinition