Liking cljdoc? Tell your friends :D

crustimoney.built-ins

A collection of common parsers.

A map called all is also defined, which contain all the parsers in this namespace. This can be merged with other grammars for example:

(merge built-ins/all (create-parser "
  root <- (space? (:name word) blank (:id natural) space?)* $
"))
A collection of common parsers.

A map called `all` is also defined, which contain all the parsers in
this namespace. This can be merged with other grammars for example:

    (merge built-ins/all (create-parser "
      root <- (space? (:name word) blank (:id natural) space?)* $
    "))
raw docstring

allclj

A map with the built-in parsers.

A map with the built-in parsers.
sourceraw docstring

blankclj

Parse one or more space or tab characters, not newlines.

Parse one or more space or tab characters, not newlines.
sourceraw docstring

blank?clj

Parse zero or more space or tab characters, not newlines.

Parse zero or more space or tab characters, not newlines.
sourceraw docstring

dquoteclj

Parse an double quoted string, including " escapes.

Parse an double quoted string, including \" escapes.
sourceraw docstring

floatclj

Parse a floating point number.

Parse a floating point number.
sourceraw docstring

integerclj

Parse a number, possibly negative.

Parse a number, possibly negative.
sourceraw docstring

naturalclj

Parse a number, zero or higher.

Parse a number, zero or higher.
sourceraw docstring

newlineclj

Parse a single newline (either \r\n or \n).

Parse a single newline (either \r\n or \n).
sourceraw docstring

spaceclj

Parse one or more whitespace characters, including newlines.

Parse one or more whitespace characters, including newlines.
sourceraw docstring

space?clj

Parse zero or more whitespace characters, including newlines.

Parse zero or more whitespace characters, including newlines.
sourceraw docstring

squoteclj

Parse an single quoted string, including ' escapes.

Parse an single quoted string, including \' escapes.
sourceraw docstring

wordclj

Parse an alphabetical word.

Parse an alphabetical word.
sourceraw docstring

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

× close