compression.zlib: fix help-lint.
parent
8a4c80371e
commit
30492d1a06
|
@ -29,10 +29,10 @@ HELP: compressed-size
|
|||
|
||||
HELP: uncompress
|
||||
{ $values
|
||||
{ "compressed" compressed }
|
||||
{ "obj" { $or compressed byte-array } }
|
||||
{ "byte-array" byte-array }
|
||||
}
|
||||
{ $description "Uncompresses a compressed object, returning a byte-array of the underlying data." } ;
|
||||
{ $description "Uncompresses, returning a byte-array of the underlying data." } ;
|
||||
|
||||
ARTICLE: "compression.zlib" "Compression (ZLIB)"
|
||||
"The " { $vocab-link "compression.zlib" } " vocabulary provides support for ZLIB:"
|
||||
|
|
|
@ -46,7 +46,7 @@ ERROR: zlib-failed n string ;
|
|||
|
||||
GENERIC: uncompress ( obj -- byte-array )
|
||||
|
||||
M: compressed uncompress ( compressed -- byte-array )
|
||||
M: compressed uncompress
|
||||
[
|
||||
length>> [ <byte-vector> dup underlying>> ] keep
|
||||
ulong <ref>
|
||||
|
@ -63,6 +63,6 @@ M: compressed uncompress ( compressed -- byte-array )
|
|||
2drop ulong deref memory>byte-array
|
||||
] with-destructors ;
|
||||
|
||||
M: byte-array uncompress ( byte-array -- byte-array )
|
||||
M: byte-array uncompress
|
||||
[ length 5 [0,b) [ 2^ * ] with map ] keep
|
||||
'[ _ (uncompress) ] attempt-all ;
|
||||
|
|
Loading…
Reference in New Issue