You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All the Uint*s have right shift implemented, but only Uint256 has an impl for Shl<u32>, Shl<&u32> and a checked_shl.
We should standardize this between the types.
Also note that ShlAssign is missing even for Uint256 (while ShrAssign exists for all of them)
The text was updated successfully, but these errors were encountered:
All the
Uint*
s have right shift implemented, but onlyUint256
has an impl forShl<u32>
,Shl<&u32>
and achecked_shl
.We should standardize this between the types.
Also note that
ShlAssign
is missing even forUint256
(whileShrAssign
exists for all of them)The text was updated successfully, but these errors were encountered: