# Zero

`import { Zero } from "destack:math";`

Numeric type with an additive identity.

```ds title="Zero"
export newtype interface Zero {
    static zero(): this;
}
```

[language/library/src/math/identity.ds:2:5](https://github.com/destack-sh/destack/blob/main/language/library/src/math/identity.ds#L2-L5)

## Members

### `static zero(): this`

Return the additive identity.
