reassemble-bytes ( range -- quot )


Vocabulary
io.binary.fast

Definition
USING: combinators combinators.smart kernel math sequences ;

IN: io.binary.fast

: reassemble-bytes ( range -- quot )
[ [ [ ] ] [ [ shift ] curry ] if-zero ] map
[ spread ] curry [ [ bitor ] reduce-outputs ] curry ;
inline