Skip to content

Commit 82dce0b

Browse files
thomasmulvaneydnolen
authored andcommitted
CLJS-1717 remove map from equiv-map
1 parent 82a2a29 commit 82dce0b

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/main/cljs/cljs/core.cljs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5776,10 +5776,9 @@ reduces them without incurring seq initialization"
57765776
(when (map? y)
57775777
; assume all maps are counted
57785778
(when (== (count x) (count y))
5779-
(every? identity
5780-
(map (fn [xkv] (= (get y (first xkv) never-equiv)
5781-
(second xkv)))
5782-
x))))))
5779+
(every? (fn [xkv] (= (get y (first xkv) never-equiv)
5780+
(second xkv)))
5781+
x)))))
57835782

57845783

57855784
(defn- scan-array [incr k array]

0 commit comments

Comments
 (0)