Handbook
Glossary
stream-contents-by-length-or-block ( stream -- seq )
Vocabulary
io
.
private
Inputs
stream
an
object
Outputs
seq
an
object
Definition
USING:
io
kernel
;
IN:
io.private
:
stream-contents-by-length-or-block
( stream -- seq )
dup
stream-length
[
stream-contents-by-length
]
[
stream-contents-by-block
]
if*
;
inline