Handbook
Glossary
decode-raw-string ( block current-index string-length -- block new-index string )
Vocabulary
http2
.
hpack
.
private
Inputs
block
an
object
current-index
an
object
string-length
an
object
Outputs
block
an
object
new-index
an
object
string
an
object
Definition
USING:
io.encodings.string
io.encodings.utf8
kernel
math
sequences
;
IN:
http2.hpack.private
:
decode-raw-string
( block current-index string-length -- block new-index string )
over
+
dup
[
pick
subseq
utf8
decode
]
dip
swap
;