update changelog

This commit is contained in:
nathanmarz 2017-08-13 07:51:02 -04:00
parent 1b4a7d3d59
commit 1805094df8
2 changed files with 2 additions and 1 deletions

View file

@ -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

View file

@ -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)