G.f. method
Creates and opens a stream over a byte string.
make byte-string-stream-class #key contents direction start end => byte-string-stream-instance
The class <byte-string-stream>.
<byte-string>.
#"input", #"output", or #"input-output". Default value: #"input".
<integer>. Default value: 0.
<integer>. Default value: contents.size.
An instance of <byte-string-stream>.
io
streams
Creates and opens a stream over a byte string.
This method returns a new instance of <byte-string-stream>.
If supplied, contents describes the contents of the stream, and must be an instance of <byte-string>. The direction, start, and end init-keywords are as for make on <sequence-stream>.
let stream = make(<byte-string-stream>,
direction: #"output");