Handbook
Glossary
decode-utf8 ( stream -- char/f )
Vocabulary
io
.
encodings
.
utf8
.
private
Inputs
stream
an
object
Outputs
char/f
an
object
Definition
USING:
io
kernel
;
IN:
io.encodings.utf8.private
:
decode-utf8
( stream -- char/f )
dup
stream-read1
dup
[
begin-utf8
]
when
nip
;
inline