Handbook
Glossary
raw-base64> ( str -- str' )
Vocabulary
io
.
encodings
.
utf7
Inputs
str
an
object
Outputs
str'
an
object
Definition
USING:
base64
io.encodings.string
io.encodings.utf16
kernel
math
math.functions
sequences
;
IN:
io.encodings.utf7
:
raw-base64>
( str -- str' )
dup
length
4
/
ceiling
4
*
61
pad-tail
base64>
utf16be
decode
;