all-bytes ( bytes -- from to bytes ) (original) (raw)

all-bytes ( bytes -- from to bytes )

Vocabulary
tools.hexdump.private

Inputs

bytes an object

Outputs

from an object
to an object
bytes an object

Definition

USING: kernel sequences ;

IN: tools.hexdump.private

: all-bytes ( bytes -- from to bytes )
[ 0 swap length ] keep ; inline