?minimum ( seq/f -- elt/f )


Vocabulary
sequences.extras

Inputs
seq/fa sequence or f


Outputs
elt/fan object or f


Word description
Outputs the least element of seq, ignoring any f elements in it. If seq is empty or f, returns f.

Examples
USING: prettyprint sequences.extras ; { 1 f 3 2 } ?minimum .
1


See also
?maximum

Definition