Handbook
Glossary
timer-already-started? ( object -- ? )
Vocabulary
timers
Inputs and outputs
object
an
object
?
a
boolean
Word description
Tests if the object is an instance of the
timer-already-started
class.
Definition
USING:
classes.tuple.private
kernel
slots.private
;
IN:
timers
:
timer-already-started?
( object -- ? )
dup
tuple?
[
layout-of
7
slot
\
timer-already-started
eq?
]
[
drop
f
]
if
;