identity-hashtable? ( object -- ? ) (original) (raw)

identity-hashtable? ( object -- ? )

Vocabulary
hashtables.identity

Inputs and outputs

object an object
? a boolean

Word description
Tests if the object is an instance of the identity-hashtable class.

Definition

USING: classes.tuple.private ;

IN: hashtables.identity

: identity-hashtable? ( object -- ? )
\ identity-hashtable 9 tuple-instance? ;