Handbook
Glossary
signed-int-vector-rep? ( object -- ? )
Vocabulary
cpu
.
architecture
Inputs and outputs
object
an
object
?
a
boolean
Word description
Tests if the object is an instance of the
signed-int-vector-rep
class.
Definition
USING:
kernel
;
IN:
cpu.architecture
:
signed-int-vector-rep?
( object -- ? )
dup
longlong-2-rep?
[
drop
t
]
[
dup
int-4-rep?
[
drop
t
]
[
dup
short-8-rep?
[
drop
t
]
[
char-16-rep?
]
if
]
if
]
if
;