VocabularysequencesInputsOutputsWord descriptionMakes an implicit check if the sequence is empty. An empty sequence is dropped and the
quot is called.
ExamplesThis word is equivalent to
if-empty with an empty second quotation:
USING: sequences prettyprint ;
{ } [ { 4 5 6 } ] [ ] if-empty .
{ 4 5 6 }
USING: sequences prettyprint ;
{ } [ { 4 5 6 } ] when-empty .
{ 4 5 6 }
Definition