Fix formatting.
This commit is contained in:
parent
b78ac4648e
commit
86b9d61555
1 changed files with 7 additions and 0 deletions
|
|
@ -5,6 +5,7 @@
|
||||||
### declarepath
|
### declarepath
|
||||||
|
|
||||||
`(declarepath name)`
|
`(declarepath name)`
|
||||||
|
|
||||||
`(declarepath name params)`
|
`(declarepath name params)`
|
||||||
|
|
||||||
Declares a new symbol available to be defined as a path. If the path will require parameters, these must be specified here.
|
Declares a new symbol available to be defined as a path. If the path will require parameters, these must be specified here.
|
||||||
|
|
@ -20,6 +21,8 @@ See also [providepath](#providepath)
|
||||||
(0 0 2 3 4)
|
(0 0 2 3 4)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Collector Macros
|
||||||
|
|
||||||
### defcollector
|
### defcollector
|
||||||
|
|
||||||
`(defcollector name params collect-val-impl)`
|
`(defcollector name params collect-val-impl)`
|
||||||
|
|
@ -38,9 +41,12 @@ An informative example is the actual implementation of `putval`, which follows.
|
||||||
(3 4 5 6 7)
|
(3 4 5 6 7)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Navigator Macros
|
||||||
|
|
||||||
### defnav
|
### defnav
|
||||||
|
|
||||||
`(defnav name params select-impl transform-impl)`
|
`(defnav name params select-impl transform-impl)`
|
||||||
|
|
||||||
`(defnav name params transform-impl select-impl)`
|
`(defnav name params transform-impl select-impl)`
|
||||||
|
|
||||||
Canonically the first is used.
|
Canonically the first is used.
|
||||||
|
|
@ -78,6 +84,7 @@ See also [nav](#nav)
|
||||||
### nav
|
### nav
|
||||||
|
|
||||||
`(nav params select-impl transform-impl)`
|
`(nav params select-impl transform-impl)`
|
||||||
|
|
||||||
`(nav params transform-impl select-impl)`
|
`(nav params transform-impl select-impl)`
|
||||||
|
|
||||||
Returns an "anonymous navigator." See [defnav](#defnav).
|
Returns an "anonymous navigator." See [defnav](#defnav).
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue