We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa6ecdf commit 977284eCopy full SHA for 977284e
src/main/cljs/cljs/core.cljs
@@ -6367,7 +6367,7 @@ reduces them without incurring seq initialization"
6367
6368
IEquiv
6369
(-equiv [coll other]
6370
- (if (and (implements? IMap other) (not (record? other)))
+ (if (and (map? other) (not (record? other)))
6371
(let [alen (alength arr)
6372
^not-native other other]
6373
(if (== cnt (-count other))
@@ -6381,7 +6381,7 @@ reduces them without incurring seq initialization"
6381
false))
6382
true))
6383
6384
- (equiv-map coll other)))
+ false))
6385
6386
IHash
6387
(-hash [coll] (caching-hash coll hash-unordered-coll __hash))
0 commit comments