ShiftRight import { ShiftRight } from "destack:ops"; Interface for the >> operator. a >> b becomes a.shiftRight(b). export newtype interface ShiftRight { Output; shiftRight(other: T): this.Output; } language/library/src/ops/shift.ds:17:23 Members Output The result type. shiftRight(other: T): this.Output Shift this value right by other.