VocabularykernelInputsOutputsNone
Word descriptionApplies
p to
x, then applies
q to
x.
ExamplesIf
[ p ] and
[ q ] have stack effect
( x -- ), then the following two lines are equivalent:
[ p ] [ q ] bi
dup p q
If
[ p ] and
[ q ] have stack effect
( x -- y ), then the following two lines are equivalent:
[ p ] [ q ] bi
dup p swap q
In general, the following two lines are equivalent:
[ p ] [ q ] bi
[ p ] keep q
See alsotri,
cleaveDefinition