Handbook
Glossary
uncompress ( byte-array -- byte-array' )
Compression (ZLIB)
Prev:
compress ( byte-array -- byte-array' )
Vocabulary
compression
.
zlib
Inputs
byte-array
a
byte-array
Outputs
byte-array'
a
byte-array
Word description
Takes a zlib-compressed byte-array and uncompresses it to another byte-array.
Definition
USING:
continuations
kernel
math
ranges
sequences
;
IN:
compression.zlib
:
uncompress
( byte-array -- byte-array' )
[
length
5
[0..b)
[
2^
*
]
with
map
]
keep
[
(uncompress)
]
curry
attempt-all
;