(read reader)
(read {eof :eof, :as opts, :or {eof :eofthrow}} reader)
(read reader eof-error? sentinel)
Reads the first object from an IPushbackReader.
Returns the object read. If EOF, throws if eof-error? is true.
Otherwise returns sentinel. If no stream is providen, *in* will be used.
Opts is a persistent map with valid keys:
:read-cond - :allow to process reader conditionals, or
:preserve to keep all branches
:features - persistent set of feature keywords for reader conditionals
:eof - on eof, return value unless :eofthrow, then throw.
if not specified, will throw
To read data structures only, use oakclojure.tools.reader.edn/read
Note that the function signature of oakclojure.tools.reader/read and
oakclojure.tools.reader.edn/read is not the same for eof-handling