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.
|
635D8 |
2DUPEQ
|
( ob1 ob2 → ob1 ob2 flag )
Does 2DUP then EQ .
|
63605 |
EQOR
|
( flag ob1 ob2 → flag' )
Does EQ then OR .
|
6303D |
EQOVER
|
( ob3 ob1 ob2 → ob3 flag ob3 )
Does EQ then OVER .
|
635F1 |
EQ:
|
( ob → flag )
EQ with the next object in the current
stream.
|
635EC |
DUPEQ:
|
( ob → ob flag )
Does DUP then EQ: .
|
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.
|
635C4 |
EQUALNOT
|
( ob1 ob2 → flag )
Returns TRUE if the objects are different.
|
63619 |
EQUALOR
|
( flag ob1 ob2 → flag' )
Does EQUAL then OR .
|