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