VocabularysequencesInputsOutputsWord descriptionOutputs the least element of
seq.
ExamplesExample:
USING: sequences prettyprint ;
{ 1 2 3 4 5 } minimum .
1
Example:
USING: sequences prettyprint ;
{ "c" "b" "a" } minimum .
"a"
ErrorsThrows an error if the sequence is empty.
See alsomin,
max,
minimum-by,
maximum,
maximum-byDefinitionMethods