File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -12365,9 +12365,7 @@ reduces them without incurring seq initialization"
12365
12365
(-conj [coll entry]
12366
12366
(if (vector? entry)
12367
12367
(-assoc coll (-nth entry 0 ) (-nth entry 1 ))
12368
- (reduce -conj
12369
- coll
12370
- entry)))
12368
+ (reduce -conj coll entry)))
12371
12369
12372
12370
IEmptyableCollection
12373
12371
(-empty [coll] (with-meta (. ObjMap -EMPTY) meta))
@@ -12381,8 +12379,9 @@ reduces them without incurring seq initialization"
12381
12379
ISeqable
12382
12380
(-seq [coll]
12383
12381
(when (pos? (alength keys))
12384
- (map #(vector % (unchecked-get strobj %))
12385
- (.sort keys obj-map-compare-keys))))
12382
+ (prim-seq
12383
+ (.map (.sort keys obj-map-compare-keys)
12384
+ #(unchecked-get strobj %)) 0 )))
12386
12385
12387
12386
ICounted
12388
12387
(-count [coll] (alength keys))
You can’t perform that action at this time.
0 commit comments