operator >> method

LogicValue operator >>(
  1. dynamic shamt
)

Arithmetic right-shift operation.

Shifted in bits will match the sign (upper-most bit).

Implementation

LogicValue operator >>(dynamic shamt) =>
    _shift(shamt, _ShiftType.arithmeticRight);