diverging-recursion-error? ( object -- ? ) (original) (raw)
diverging-recursion-error? ( object -- ? )
Vocabulary
stack-checker.errors
Inputs and outputs
object | an object |
---|---|
? | a boolean |
Word description
Tests if the object is an instance of the diverging-recursion-error class.
Definition
USING: classes.tuple.private ;
: diverging-recursion-error? ( object -- ? )
\ diverging-recursion-error 9 tuple-instance? ;