Handbook
Glossary
typed-global-variable? ( object -- ? )
Vocabulary
variables
Inputs and outputs
object
an
object
?
a
boolean
Word description
Tests if the object is an instance of the
typed-global-variable
class.
Definition
USING:
kernel
;
IN:
variables
:
typed-global-variable?
( object -- ? )
dup
typed-variable?
not
[
drop
f
]
[
global-variable?
]
if
;