Document AFTER-ELEM.
This commit is contained in:
parent
be39002574
commit
0435612e54
1 changed files with 10 additions and 0 deletions
|
|
@ -3,6 +3,7 @@
|
||||||
**Table of Contents**
|
**Table of Contents**
|
||||||
|
|
||||||
- [Unparameterized Navigators](#unparameterized-navigators)
|
- [Unparameterized Navigators](#unparameterized-navigators)
|
||||||
|
- [AFTER-ELEM](#after-elem)
|
||||||
- [ALL](#all)
|
- [ALL](#all)
|
||||||
- [ATOM](#atom)
|
- [ATOM](#atom)
|
||||||
- [BEGINNING](#beginning)
|
- [BEGINNING](#beginning)
|
||||||
|
|
@ -63,6 +64,15 @@
|
||||||
|
|
||||||
# Unparameterized Navigators
|
# Unparameterized Navigators
|
||||||
|
|
||||||
|
## AFTER-ELEM
|
||||||
|
|
||||||
|
`AFTER-ELEM` navigates to the 'void' element after the sequence. For transformations – if result is not `NONE`, then append that value.
|
||||||
|
|
||||||
|
```
|
||||||
|
=> (setval AFTER-ELEM 3 [1 2])
|
||||||
|
[1 2 3]
|
||||||
|
```
|
||||||
|
|
||||||
## ALL
|
## ALL
|
||||||
|
|
||||||
`ALL` navigates to every element in a collection. If the collection is a map, it will navigate to each key-value pair `[key value]`.
|
`ALL` navigates to every element in a collection. If the collection is a map, it will navigate to each key-value pair `[key value]`.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue