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
Okay, I just discovered this was enabled in Dart 2.14 - what a coincidence 🙌
Pre-2.14
Here is a function that does the same:
/// Bitwise unsigned right shift of [x] by [s] bits.////// This function works as `>>>` does starting with Dart 2.14.inturs(int x, int s) => (x &0xffffffffffffffff) >>2;
I am very confused by what is going on with
int.>>>
.int
class.If I want to use bitwise unsigned right shift on integers, how do I do that?
The text was updated successfully, but these errors were encountered: