deferred? ( object -- ? )
Factor documentation > Factor handbook > The language > Words > Deferred words and mutual recursion
Prev:deferred
Next:undefined ( -- * )


Vocabulary
words

Inputs and outputs
objectan object
?a boolean


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

Definition
USING: accessors kernel ;

IN: words

: deferred? ( object -- ? )
dup word? [ def>> undefined-def = ] [ drop f ] if ;