8bit-buffer? ( object -- ? )


Vocabulary
synth.buffers

Inputs and outputs
objectan object
?a boolean


Word description
Tests if the object is an instance of the 8bit-buffer class.

Definition
USING: accessors kernel ;

IN: synth.buffers

: 8bit-buffer? ( object -- ? )
dup buffer? [ 8bit?>> ] [ drop f ] if ;