serial-port? ( object -- ? )


Vocabulary
io.serial

Inputs and outputs
objectan object
?a boolean


Word description
Tests if the object is an instance of the serial-port class.

Definition
USING: classes.tuple.private ;

IN: io.serial

: serial-port? ( object -- ? )
\ serial-port 11 tuple-instance? ;