# Plus

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

Interface for unary `+`.

`+a` becomes `a.plus()`.

```ds title="Plus"
export newtype interface Plus {
    Output;
    plus(): this.Output;
}
```

[language/library/src/ops/plus.ds:17:23](https://github.com/destack-sh/destack/blob/main/language/library/src/ops/plus.ds#L17-L23)

## Members

### `Output`

The result type.

### `plus(): this.Output`

Return this value through unary plus.
