Handbook
Glossary
signed-unnormalized-integer-components? ( object -- ? )
Vocabulary
images
Inputs and outputs
object
an
object
?
a
boolean
Word description
Tests if the object is an instance of the
signed-unnormalized-integer-components
class.
Definition
USING:
kernel
;
IN:
images
:
signed-unnormalized-integer-components?
( object -- ? )
dup
int-integer-components?
[
drop
t
]
[
dup
short-integer-components?
[
drop
t
]
[
byte-integer-components?
]
if
]
if
;