VocabularysequencesInputsOutputsNone
Word descriptionMakes an implicit check if the sequence is empty. An empty sequence is dropped. Otherwise, the
quot is called on the sequence.
ExamplesThis word is equivalent to
if-empty with an empty first quotation:
USING: sequences prettyprint ;
{ 4 5 6 } [ ] [ sum . ] if-empty
15
USING: sequences prettyprint ;
{ 4 5 6 } [ sum . ] unless-empty
15
Definition