input-parameter? ( object -- ? ) (original) (raw)

input-parameter? ( object -- ? )

Vocabulary
stack-checker.values

Inputs and outputs

object an object
? a boolean

Word description
Tests if the object is an instance of the input-parameter class.

Definition

USING: kernel ;

IN: stack-checker.values

: input-parameter? ( object -- ? ) \ input-parameter eq? ;