float-4-rep? ( object -- ? )


Vocabulary
cpu.architecture

Inputs and outputs
objectan object
?a boolean


Word description
Tests if the object is an instance of the float-4-rep class.

Definition
USING: kernel ;

IN: cpu.architecture

: float-4-rep? ( object -- ? ) \ float-4-rep eq? ;