ShiftRightUnsigned import { ShiftRightUnsigned } from "destack:ops"; Interface for the >>> operator. a >>> b becomes a.shiftRightUnsigned(b). export newtype interface ShiftRightUnsigned { Output; shiftRightUnsigned(other: T): this.Output; } language/library/src/ops/shift.ds:29:35 Members Output The result type. shiftRightUnsigned(other: T): this.Output Shift this value right by other, shifting zeros in from the left.