no-c-type? ( object -- ? )


Vocabulary
alien.c-types

Inputs and outputs
objectan object
?a boolean


Word description
Tests if the object is an instance of the no-c-type class.

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

IN: alien.c-types

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