I/O
EDN
59- value
cljs.reader
- value
cljs.reader
- protocol
cljs.reader
- value
cljs.reader
- macro
cljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
- value
cljs.reader
- value
cljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
- value
cljs.reader
Reads the first object from an cljs.tools.reader.reader-types/IPushbackReader. Returns the object read. If EOF, throws i...
functioncljs.reader
Reads the first object from an cljs.tools.reader.reader-types/IPushbackReader. Returns the object read. If EOF, throws i...
functionclojure.edn
- function
cljs.reader
- function
cljs.reader
- value
cljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
Read until first character that doesn't match pred, returning char.
functioncljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
Reads one object from the string s. Returns nil when s is nil or empty. Reads data in the edn format (subset of Clojure...
functioncljs.reader
Reads one object from the string s. Returns nil when s is nil or empty. Reads data in the edn format (subset of Clojure...
functionclojure.edn
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
- function
cljs.reader
Advances the reader to the end of a line. Returns the reader
functioncljs.reader
- function
cljs.reader
- value
cljs.reader
- function
cljs.reader
- value
cljs.reader
- value
cljs.reader
- function
cljs.reader
- function
cljs.reader
- value
cljs.pprint
The base to use for printing integers and rationals.
valuecljs.pprint
The column at which to enter miser style. Depending on the dispatch table, miser style add newlines in more places to tr...
valuecljs.pprint
The pretty print dispatch function. Use with-pprint-dispatch or set-pprint-dispatch to modify.
valuecljs.pprint
Bind to true if you want write to use pretty printing
valuecljs.pprint
Print a radix specifier in front of integers and rationals. If *print-base* is 2, 8, or 16, then the radix specifier use...
valuecljs.pprint
Pretty printing will try to avoid anything going beyond this column. Set it to nil to have pprint let the line be arbitr...
valuecljs.pprint
Don't print namespaces with symbols. This is particularly useful when pretty printing the results of macro expansions
valuecljs.pprint
- protocol
cljs.pprint
- protocol
cljs.pprint
Convert char to int
functioncljs.pprint
An implementation of a Common Lisp compatible format function. cl-format formats its arguments to an output stream or st...
functioncljs.pprint
The pretty print dispatch function for pretty printing Clojure code.
multimethodcljs.pprint
- macro
cljs.pprint
Returns true if n is an float.
functioncljs.pprint
Makes a function which can directly run format-in. The function is fn [stream & args] ... and returns nil unless the str...
macrocljs.pprint
Makes a function which can directly run format-in. The function is fn [& args] ... and returns nil. This version of the ...
macrocljs.pprint
Make a newline if *out* is not already at the beginning of the line. If *out* is not a pretty writer (which keeps track ...
functioncljs.pprint
Returns the IWriter passed in wrapped in a pretty writer proxy, unless it's already a pretty writer. Generally, it is un...
functioncljs.pprint
Get the value of the field a named by the argument (which should be a keyword).
macrocljs.pprint
A convenience macro that pretty prints the last thing output. This is exactly equivalent to (pprint *1).
macrocljs.pprint
- function
cljs.pprint
Create an indent at this point in the pretty printing stream. This defines how following lines are indented. relative-to...
functioncljs.pprint
Execute the body as a pretty printing logical block with output to *out* which must be a pretty printing writer. When us...
macrocljs.pprint
Print a conditional newline to a pretty printing stream. kind specifies if the newline is :linear, :miser, :fill, or :ma...
functioncljs.pprint
- value
cljs.pprint
Tab at this point in the pretty printing stream. kind specifies whether the tab is :line, :section, :line-relative, or :...
functioncljs.pprint
A version of loop that iterates at most *print-length* times. This is designed for use in pretty-printer dispatch functi...
macrocljs.pprint
Prints a collection of maps in a textual table. Prints table headings ks, and then a line of output for each row, corres...
functioncljs.pprint
- function
cljs.pprint
Set the value of the field SYM to NEW-VAL
macrocljs.pprint
The pretty print dispatch function for simple data structure format.
multimethodcljs.pprint
Execute body with the pretty print dispatch function bound to function.
macrocljs.pprint
- macro
cljs.pprint
Write an object subject to the current bindings of the printer control variables. Use the kw-args argument to override i...
functioncljs.pprint
Write an object to *out* subject to the current bindings of the printer control variables. Use the kw-args argument to o...
functioncljs.pprint
Printing
12- function
cljs.core
Prints a newline using *print-fn*
functioncljs.core
Prints the object(s) using string-print. Prints the object(s), separated by spaces if there is more than one. By defaul...
functioncljs.core
pr to a string, returning it. Fundamental entrypoint to IPrintWithWriter.
functioncljs.core
Prints the object(s) using string-print. print and println produce output for human consumption.
functioncljs.core
print to a string, returning it
functioncljs.core
Prints formatted output, as per format
functioncljs.core
Same as print followed by (newline)
functioncljs.core
println to a string, returning it
functioncljs.core
Same as pr followed by (newline).
functioncljs.core
Same as pr-str followed by (newline)
functioncljs.core
Evaluates exprs in a context in which *print-fn* is bound to .append on a fresh StringBuffer. Returns the string create...
macrocljs.core