# Coordinate

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

Tensor coordinate with `Rank` indices.

```ds title="Coordinate"
export struct Coordinate<const Rank: usize> {
    values: [usize; Rank];
}
```

[language/library/src/tensor/shape.ds:43:46](https://github.com/destack-sh/destack/blob/main/language/library/src/tensor/shape.ds#L43-L46)

## Members

### `values: [usize; Rank]`

The per-axis indices.
