0&& ( quots -- ? )
Factor handbook » The language » Combinators » Short-circuit combinators

Next:1&& ( obj quots -- ? )


Vocabulary
combinators.short-circuit

Inputs
quotsa sequence of quotations with stack effect ( -- ? )


Outputs
?the result of the last quotation, or f


Word description
If every quotation in the sequence outputs a true value, outputs the result of the last quotation, otherwise outputs f.

Definition