long-long-type? ( object -- ? )


Vocabulary
alien.c-types

Inputs and outputs
objectan object
?a boolean


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

Definition
USING: classes.tuple.private ;

IN: alien.c-types

: long-long-type? ( object -- ? )
\ long-long-type 11 tuple-instance? ;