03B2E |
EQ
|
( ob1 ob2 → flag )
Returns TRUE if both objects are the same,
i.e., they occupy the same physical space in
memory. Only the addresses of the objects are
tested.
|
0FED0 |
2DUPEQ
|
( ob1 ob2 → ob1 ob2 flag )
Does 2DUP then EQ .
|
0FEE4 |
EQOR
|
( flag ob1 ob2 → flag' )
Does EQ then OR .
|
0F91E |
EQOVER
|
( ob3 ob1 ob2 → ob3 flag ob3 )
Does EQ then OVER .
|
03B97 |
EQUAL
|
( ob1 ob2 → flag )
Returns TRUE if the objects are equal
(but not necessarily the same), i.e., their
prologs and contents are the same.
|
0FEBC |
EQUALNOT
|
( ob1 ob2 → flag )
Returns TRUE if the objects are different.
|
0FEF8 |
EQUALOR
|
( flag ob1 ob2 → flag' )
Does EQUAL then OR .
|