Handbook
Glossary
read-until-step ( seps port -- byte-array/f sep/f )
Vocabulary
io
.
ports
.
private
Inputs
seps
an
object
port
an
object
Outputs
byte-array/f
an
object
sep/f
an
object
Definition
USING:
accessors
io.buffers
io.ports
kernel
;
IN:
io.ports.private
:
read-until-step
( seps port -- byte-array/f sep/f )
dup
wait-to-read
[
2drop
f
f
]
[
buffer>>
buffer-read-until
]
if
;
inline