operator << method

  1. @override
Logic operator <<(
  1. dynamic other
)
override

Logical left-shift.

The lower bits are 0-filled.

If isNet and other is constant, then the result will also be a net.

Implementation

@override
Logic operator <<(dynamic other) => packed << other;