Handbook
Glossary
decode-chunk ( dialect -- ch buffer )
Vocabulary
io
.
encodings
.
utf7
Inputs
dialect
an
object
Outputs
ch
an
object
buffer
an
object
Definition
USING:
io
kernel
sequences
splitting
;
IN:
io.encodings.utf7
:
decode-chunk
( dialect -- ch buffer )
dup
first2
swap
[
second
read-until
drop
]
[
first2
swap
replace
]
bi*
[
second
first
first
{
}
]
[
raw-base64>
emit-char
]
if-empty
;