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
In rust, arithmetic shift is >>> and logical shift is >>, whereas in Java and Javascript, arithmetic shift is >> and logical shift is >>>.
This seems potentially confusing, and there really isn't any good reason to go with one over the other, so it seems like we might as well just do what other languages do.