byte-array? ( object -- ? ) (original) (raw)

byte-array? ( object -- ? )
Factor handbook » The language » Collections » Byte arrays

Prev: byte-array
Next: >byte-array ( seq -- byte-array )

Vocabulary
byte-arrays

Inputs and outputs

object an object
? a boolean

Word description
Tests if the object is an instance of the byte-array class.

Definition

USING: kernel kernel.private ;

IN: byte-arrays

: byte-array? ( object -- ? ) tag 9 eq? ;