fried-callable? ( object -- ? )


Vocabulary
fry.private

Inputs and outputs
objectan object
?a boolean


Word description
Tests if the object is an instance of the fried-callable class.

Definition
USING: kernel math quotations ;

IN: fry.private

: fried-callable? ( object -- ? )
dup callable? [ count-inputs 0 > ] [ drop f ] if ;