raw-source? ( object -- ? )


Vocabulary
pop3.private

Inputs and outputs
objectan object
?a boolean


Word description
Tests if the object is an instance of the raw-source class.

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

IN: pop3.private

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