Handbook
Glossary
to-all-chats? ( object -- ? )
Vocabulary
irc
.
client
.
base
Inputs and outputs
object
an
object
?
a
boolean
Word description
Tests if the object is an instance of the
to-all-chats
class.
Definition
USING:
irc.client.chats
kernel
;
IN:
irc.client.base
:
to-all-chats?
( object -- ? )
dup
irc-connected?
[
drop
t
]
[
dup
irc-disconnected?
[
drop
t
]
[
irc-end?
]
if
]
if
;