# AxisSet

`import { AxisSet } from "destack:tensor";`

Axis set used by reductions and broadcasts.

```ds title="AxisSet"
export struct AxisSet<const Count: usize> {
    values: [Axis; Count];
}
```

[language/library/src/tensor/shape.ds:74:77](https://github.com/destack-sh/destack/blob/main/language/library/src/tensor/shape.ds#L74-L77)

## Members

### `values: [Axis; Count]`

The axis values.
