operator << method

LogicValue operator <<(
  1. dynamic shamt
)

Logical left-shift operation.

Shifted in bits are all 0.

Implementation

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