VocabularykernelInputsOutputsNone
Word descriptionApplies
p to the two input values, then applies
q to the two input values.
ExamplesIf
[ p ] and
[ q ] have stack effect
( x y -- ), then the following two lines are equivalent:
[ p ] [ q ] 2bi
2dup p q
If
[ p ] and
[ q ] have stack effect
( x y -- z ), then the following two lines are equivalent:
[ p ] [ q ] 2bi
2dup p -rot q
In general, the following two lines are equivalent:
[ p ] [ q ] 2bi
[ p ] 2keep q
Definition