# Divide

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

Interface for the `/` operator.

`a / b` becomes `a.divide(b)`.

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

[language/library/src/ops/divide.ds:5:11](https://github.com/destack-sh/destack/blob/main/language/library/src/ops/divide.ds#L5-L11)

## Members

### `Output`

The result type.

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

Divide this value by `other`.
