RShift constructor Null safety
Calculates the value of in_
shifted right (logically) by shiftAmount
.
Implementation
RShift(Logic in_, dynamic shiftAmount, {String name = 'rshift'})
: // Note: >>> vs >> is backwards for SystemVerilog and Dart
super((a, shamt) => a >>> shamt, '>>', in_, shiftAmount, name: name);