n-le> ( bytes n -- x )


Vocabulary
io.binary.fast

Definition
USING: kernel locals sequences.generalizations ;

IN: io.binary.fast

:: n-le> ( bytes n -- x )
bytes n check-length drop n firstn-unsafe n reassemble-le ;
inline