Liking cljdoc? Tell your friends :D

shuriken.reader-macros

### Defining reader-macros
raw docstring

def-reader-macrocljmacro

(def-reader-macro c params & body)

Defines a reader macro for character c. f must be a function of 4 arguments, like (fn [reader char opts pending-forms] ...).

Defines a reader macro for character `c`. `f` must be a function of
4 arguments, like `(fn [reader char opts pending-forms] ...)`.
sourceraw docstring

read-formclj

source

reader-macrosclj

The java array that stores the reader macros. It's an array used as a map of chars to objects (a char being an integer index). These object respond to .invoke with 4 arguments: reader, paragraph, opts & pending-forms.

The java array that stores the reader macros. It's an array used
as a map of chars to objects (a char being an integer index).
These object respond to `.invoke` with 4 arguments:
  reader, paragraph, opts & pending-forms.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close