operator >>> method

  1. @override
Logic operator >>>(
  1. dynamic other
)
override

Logical right-shift.

The upper bits are 0-filled.

If isNet and other is constant, then the result will also be a net.

Implementation

@override
Logic operator >>>(dynamic other) => packed >>> other;