Merge 7554d7ebed into e4b475080e
This commit is contained in:
commit
3cde1ebd87
1 changed files with 10 additions and 0 deletions
|
|
@ -10,6 +10,7 @@
|
||||||
- [END](#end)
|
- [END](#end)
|
||||||
- [FIRST](#first)
|
- [FIRST](#first)
|
||||||
- [LAST](#last)
|
- [LAST](#last)
|
||||||
|
- [MAP-KEYS](#map-keys)
|
||||||
- [MAP-VALS](#map-vals)
|
- [MAP-VALS](#map-vals)
|
||||||
- [META](#meta)
|
- [META](#meta)
|
||||||
- [NIL->LIST](#nil-list)
|
- [NIL->LIST](#nil-list)
|
||||||
|
|
@ -168,6 +169,15 @@ nil
|
||||||
nil
|
nil
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## MAP-KEYS
|
||||||
|
|
||||||
|
`MAP-KEYS` navigates to every key in a map. `MAP-VALS` is more efficient than `[ALL FIRST]`.
|
||||||
|
|
||||||
|
```clojure
|
||||||
|
=> (select [MAP-KEYS] {:a 3 :b 4})
|
||||||
|
[:a :b]
|
||||||
|
```
|
||||||
|
|
||||||
## MAP-VALS
|
## MAP-VALS
|
||||||
|
|
||||||
`MAP-VALS` navigates to every value in a map. `MAP-VALS` is more efficient than `[ALL LAST]`.
|
`MAP-VALS` navigates to every value in a map. `MAP-VALS` is more efficient than `[ALL LAST]`.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue