Basic IO utilities and STDIO.
Text streams are meant for reading characters (Reader
and Writer
) while binary streams are meant to handle
raw bytes (InputStream
and OutputStream
).
Basic IO utilities and STDIO. Text streams are meant for reading characters (`Reader` and `Writer`) while binary streams are meant to handle raw bytes (`InputStream` and `OutputStream`).
(file-in path)
Opens an input text stream for the file located under path
.
Opens an input text stream for the file located under `path`.
(file-out path)
Opens an output text stream for the file located under path
.
Opens an output text stream for the file located under `path`.
(newline out)
Writes a new line to the given text output stream.
Writes a new line to the given text output stream.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close