We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0e1147 commit 72aa5c6Copy full SHA for 72aa5c6
1 file changed
src/main/cljs/cljs/core.cljs
@@ -7329,7 +7329,9 @@ reduces them without incurring seq initialization"
7329
(== bitmap bit) nil
7330
:else (BitmapIndexedNode. nil (bit-xor bitmap bit) (remove-pair arr idx))))
7331
(key-test key key-or-nil)
7332
- (BitmapIndexedNode. nil (bit-xor bitmap bit) (remove-pair arr idx))
+ (if (== bitmap bit)
7333
+ nil
7334
+ (BitmapIndexedNode. nil (bit-xor bitmap bit) (remove-pair arr idx)))
7335
:else inode)))))
7336
7337
(inode-lookup [inode shift hash key not-found]
0 commit comments