ShiftLeft import { ShiftLeft } from "destack:ops"; Interface for the << operator. a << b becomes a.shiftLeft(b). export newtype interface ShiftLeft { Output; shiftLeft(other: T): this.Output; } language/library/src/ops/shift.ds:5:11 Members Output The result type. shiftLeft(other: T): this.Output Shift this value left by other.