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