operator >> method

  1. @nonVirtual
T operator >>(
  1. T other
)

Right-shift operator.

Implementation

@nonVirtual
T operator >>(T other) => _wrapSignAware(value >> other.value);