# Shape

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

Tensor shape with `Rank` axes.

```ds title="Shape"
export struct Shape<const Rank: usize> {
    extents: [Extent; Rank];
}
```

[language/library/src/tensor/shape.ds:15:18](https://github.com/destack-sh/destack/blob/main/language/library/src/tensor/shape.ds#L15-L18)

## Members

### `extents: [Extent; Rank]`

The size of each axis.
