biassoc? ( object -- ? )
Factor documentation > Factor handbook > The language > Collections > Bidirectional assocs
Prev:biassoc
Next:<biassoc> ( exemplar -- biassoc )


Vocabulary
biassocs

Inputs and outputs
objectan object
?a boolean


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

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

IN: biassocs

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