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