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 ] infimum-by .
{ 1 2 }
ErrorsThrows an error if the sequence is empty.
See alsomin,
max,
infimum,
supremum,
supremum-byDefinition