Api Docs[core/int.dart]

The unsigned right shift was [implemented](https://github.com/dart-lang/language/issues/478#issuecomment-889181121)

Closes https://github.com/dart-lang/sdk/pull/47227
https://github.com/dart-lang/sdk/pull/47227

GitOrigin-RevId: ec84d6886204a05906c11b6b1ebab023b8b33e38
Change-Id: Iafc195c8df212c8f78330f6ebef230daa6a6d280
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/213560
Reviewed-by: Kevin Moore <kevmoo@google.com>
Commit-Queue: Kevin Moore <kevmoo@google.com>
This commit is contained in:
Sushant Chandla 2021-09-15 22:47:04 +00:00 committed by commit-bot@chromium.org
parent 179c96cd60
commit 2eb37e56ca

View file

@ -112,8 +112,6 @@ abstract class int extends num {
/// Bitwise unsigned right shift by [shiftAmount] bits.
///
/// NOT IMPLEMENTED YET.
///
/// The least significant [shiftAmount] bits are dropped,
/// the remaining bits (if any) are shifted down,
/// and zero-bits are shifted in as the new most significant bits.