Handbook
Glossary
encode-string-utf8 ( string stream -- )
Vocabulary
io
.
encodings
.
utf8
.
private
Inputs
string
an
object
stream
an
object
Outputs
None
Definition
IN:
io.encodings.utf8.private
GENERIC#:
encode-string-utf8
1
( string stream -- )
Methods
USING:
io.encodings.utf8.private
kernel
sequences
;
M:
object
encode-string-utf8
[
char>utf8
]
curry
each
;
inline
USING:
accessors
generic
io
io.encodings.private
io.encodings.utf8.private
kernel
strings
;
M:
string
encode-string-utf8
over
aux>>
[
M\
string
encode-string-utf8
(call-next-method)
]
[
[
string>byte-array-fast
]
dip
stream-write
]
if
;
inline