Handbook
Glossary
bi@ ( x y quot -- )
Factor handbook
»
The language
»
Combinators
»
Dataflow combinators
»
Apply combinators
Next:
2bi@ ( w x y z quot -- )
Vocabulary
kernel
Inputs
x
an
object
y
an
object
quot
a
quotation
with stack effect
( obj -- ... )
Outputs
None
Word description
Applies the quotation to
x
, then to
y
.
Examples
The following two lines are equivalent:
[ p ] bi@ [ p ] dip p
The following two lines are also equivalent:
[ p ] bi@ [ p ] [ p ] bi*
Definition
IN:
kernel
:
bi@
( x y quot -- )
dup
bi*
;
inline