# ShiftRightUnsigned

`import { ShiftRightUnsigned } from "destack:ops";`

Interface for the `>>>` operator.

`a >>> b` becomes `a.shiftRightUnsigned(b)`.

```ds title="ShiftRightUnsigned"
export newtype interface ShiftRightUnsigned<T = this> {
    Output;
    shiftRightUnsigned(other: T): this.Output;
}
```

[language/library/src/ops/shift.ds:29:35](https://github.com/destack-sh/destack/blob/main/language/library/src/ops/shift.ds#L29-L35)

## Members

### `Output`

The result type.

### `shiftRightUnsigned(other: T): this.Output`

Shift this value right by `other`, shifting zeros in from the left.
