operator >> method

  1. @override
DynamicInt operator >>(
  1. int shiftAmount
)
override

Shift the bits of this integer to the right by shiftAmount.

Implementation

@override
DynamicInt operator >>(int shiftAmount) => toDynamicInt() >> shiftAmount;