Handbook
Glossary
uleb128> ( byte-array: byte-array -- n )
LEB128 Encoding
Prev:
>uleb128 ( n: integer -- byte-array )
Next:
write-uleb128 ( n -- )
Vocabulary
leb128
Inputs
byte-array
a
byte-array
Outputs
n
an
object
Definition
USING:
kernel
math
sequences
typed
;
IN:
leb128
TYPED:
uleb128>
( byte-array: byte-array -- n )
0
[
[
127
bitand
]
[
7
*
shift
]
bi*
+
]
reduce-index
;