dlist-node? ( object -- ? )


Vocabulary
dlists

Inputs and outputs
objectan object
?a boolean


Word description
Tests if the object is an instance of the dlist-node class.

Definition
USING: classes.tuple.private ;

IN: dlists

: dlist-node? ( object -- ? ) \ dlist-node 9 tuple-instance? ;