update changelog
This commit is contained in:
parent
1b4a7d3d59
commit
1805094df8
2 changed files with 2 additions and 1 deletions
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
* Added `before-index` navigator for inserting a single element into a sequence.
|
||||
* Added `index-nav` navigator for moving an element in a sequence to a new index, shifting other elements in the process.
|
||||
* Added `INDEXED-VALS` navigator for navigating to every element of a sequence as [index elem] pair. Tranform on index portion works the same as `index-nav`.
|
||||
* Workaround for ClojureScript regression that causes warnings for record fields named "var" or other reserved names
|
||||
|
||||
## 1.0.2
|
||||
|
|
|
|||
|
|
@ -1001,7 +1001,7 @@
|
|||
INDEXED-VALS
|
||||
[]
|
||||
(select* [this structure next-fn]
|
||||
;; could be more efficient with a primitve mutable field
|
||||
;; could be more efficient with a primitive mutable field
|
||||
(let [i (i/mutable-cell -1)]
|
||||
(doseqres NONE [e structure]
|
||||
(i/update-cell! i inc)
|
||||
|
|
|
|||
Loading…
Reference in a new issue