tuple? ( object -- ? )


Vocabulary
kernel

Inputs and outputs
objectan object
?a boolean


Word description
Tests if the object is an instance of the tuple class.

Definition
USING: kernel.private ;

IN: kernel

: tuple? ( object -- ? ) tag 7 eq? ;