file-system-not-found? ( object -- ? )


Vocabulary
io.files.info.unix.linux

Inputs and outputs
objectan 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 ;