LShift constructor Null safety
Calculates the value of in_
shifted left by shiftAmount
.
Implementation
LShift(Logic in_, dynamic shiftAmount, {String name = 'lshift'})
: super((a, shamt) => a << shamt, '<<', in_, shiftAmount, name: name);
Calculates the value of in_
shifted left by shiftAmount
.
LShift(Logic in_, dynamic shiftAmount, {String name = 'lshift'})
: super((a, shamt) => a << shamt, '<<', in_, shiftAmount, name: name);