Handbook
Glossary
decode-first ( n buf decoder -- buf stream encoding n c )
Vocabulary
io
.
encodings
.
private
Inputs
n
an
object
buf
an
object
decoder
an
object
Outputs
buf
an
object
stream
an
object
encoding
an
object
n
an
object
c
an
object
Definition
USING:
io.encodings
kernel
;
IN:
io.encodings.private
:
decode-first
( n buf decoder -- buf stream encoding n c )
[
rot
[
>decoder<
]
dip
2over
decode-char
]
[
swap
fix-cr
]
bi
;
inline