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