(def-regex n xeger-expr)
(def-regex n doc xeger-expr)
Macro used to short hand:
(def a-regex (make-regex "a regal expression"))
into
(def-regex a-regex "a regal expression")
Macro used to short hand: ```clojure (def a-regex (make-regex "a regal expression")) ``` into ```clojure (def-regex a-regex "a regal expression") ```
(enclosed open-rule close-rule & enclosed)
Make a grammatical describing text enclosed in balanced delimiters.
Make a grammatical describing text enclosed in balanced delimiters.
(enclosed-text & forbidden)
Text found between balanced delimiters.
Text found between balanced delimiters.
(hide g tag-names)
Selectively hide the productions of a grammar.
Selectively hide the productions of a grammar.
(hide-all g)
Hide all productions of a grammar.
Hide all productions of a grammar.
(hide-tags g tag-names)
Selectively hide the tags of a grammar.
Selectively hide the tags of a grammar.
(hide-tags-all g)
Hide all tags of a grammar.
Hide all tags of a grammar.
(make-lexer & regexes)
Make a sequence of named regular expression into a instaparse map of named regex rules.
Make a sequence of named regular expression into a instaparse map of named regex rules.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close