no-sql-type? ( object -- ? )


Vocabulary
db.types

Inputs and outputs
objectan object
?a boolean


Word description
Tests if the object is an instance of the no-sql-type class.

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

IN: db.types

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