double-2? ( object -- ? )


Vocabulary
math.vectors.simd

Inputs and outputs
objectan object
?a boolean


Word description
Tests if the object is an instance of the double-2 class.

Definition
USING: classes.tuple.private ;

IN: math.vectors.simd

: double-2? ( object -- ? ) \ double-2 9 tuple-instance? ;