output-mismatch-error? ( object -- ? ) (original) (raw)

output-mismatch-error? ( object -- ? )

Vocabulary
typed

Inputs and outputs

object an object
? a boolean

Word description
Tests if the object is an instance of the output-mismatch-error class.

Definition

USING: classes.tuple.private ;

IN: typed

: output-mismatch-error? ( object -- ? )
\ output-mismatch-error 9 tuple-instance? ;