We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b5502b commit a752299Copy full SHA for a752299
src/main/cljs/cljs/core.cljs
@@ -2918,7 +2918,7 @@ reduces them without incurring seq initialization"
2918
"Bitwise shift right"
2919
[x n] (cljs.core/bit-shift-right x n))
2920
2921
-(defn ^int bit-shift-right-zero-fill
+(defn bit-shift-right-zero-fill
2922
"DEPRECATED: Bitwise shift right with zero fill"
2923
[x n] (cljs.core/bit-shift-right-zero-fill x n))
2924
@@ -5394,7 +5394,7 @@ reduces them without incurring seq initialization"
5394
_ (pv-aset r 0 embed)]
5395
(recur (- ll 5) r)))))
5396
5397
-(defn- push-tail [pv ^int level parent tailnode]
+(defn- push-tail [pv level parent tailnode]
5398
(let [ret (pv-clone-node parent)
5399
subidx (bit-and (bit-shift-right-zero-fill (dec (.-cnt pv)) level) 0x01f)]
5400
(if (== 5 level)
0 commit comments