Factor Documentation
|
Home
|
Glossary
|
Search
factorcode.org
file-system-not-found? ( object -- ? )
Vocabulary
io.files.info.unix.linux
Inputs and outputs
object
an
object
?
a boolean
Word description
Tests if the object is an instance of the
file-system-not-found
class.
Definition
USING:
classes.tuple.private
kernel
slots.private
;
IN:
io.files.info.unix.linux
:
file-system-not-found?
( object -- ? )
dup
tuple?
[
layout-of
7
slot
\
file-system-not-found
eq?
]
[
drop
f
]
if
;