Handbook
Glossary
section_32/64-array? ( object -- ? )
Vocabulary
macho
Inputs and outputs
object
an
object
?
a
boolean
Word description
Tests if the object is an instance of the
section_32/64-array
class.
Definition
USING:
classes.tuple.private
kernel
slots.private
specialized-arrays.instances.macho.section
specialized-arrays.instances.macho.section_64
;
IN:
macho
:
section_32/64-array?
( object -- ? )
dup
tuple?
[
layout-of
7
slot
dup
\
section_64-array
eq?
[
drop
t
]
[
\
section-array
eq?
]
if
]
[
drop
f
]
if
;