(buffered-input-stream s)
Returns a BufferedInputStream for a string.
Returns a BufferedInputStream for a string.
(read-char stream)
Reads a single character from a BufferedInputStream and returns it. Note that this mutates the given stream.
Reads a single character from a BufferedInputStream and returns it. Note that this mutates the given stream.
(read-str stream n)
Reads n bytes from a BufferedInputStream and returns them as a string. Note that this mutates the given stream.
Reads n bytes from a BufferedInputStream and returns them as a string. Note that this mutates the given stream.
(read-until reader delimiter)
Reads from the given stream until a specified character is found and returns the string up to that point (not including the delimiter). Note that this mutates the given stream.
Reads from the given stream until a specified character is found and returns the string up to that point (not including the delimiter). Note that this mutates the given stream.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close