bad-length? ( object -- ? )


Vocabulary
io.binary.fast

Inputs and outputs
objectan object
?a boolean


Word description
Tests if the object is an instance of the bad-length class.

Definition
USING: classes.tuple.private kernel slots.private ;

IN: io.binary.fast

: bad-length? ( object -- ? )
dup tuple?
[ layout-of 7 slot \ bad-length eq? ] [ drop f ] if ;