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