We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6c4b8c5 + 31fbc2e commit c1576a1Copy full SHA for c1576a1
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## 1.2.7
2
+- Correct CLJS implementation of IKVReduce
3
+Contributed by @KeeganMyers
4
+
5
## 1.2.6
6
- Correct implementation of IHashEq
7
src/linked/map.cljc
@@ -204,7 +204,7 @@
204
205
IKVReduce
206
(-kv-reduce [coll f init]
207
- (reduce (seq coll) f init))
+ (reduce #(apply (partial f %1) %2) init (seq coll)))
208
209
IFn
210
(-invoke [coll k]
0 commit comments