# FixedArray

`import { FixedArray } from "destack:collections";`

Fixed-size array alias.

```ds title="FixedArray"
export type FixedArray<T, const N: usize> = [T; N]
```

[language/library/src/collections/fixed-array.ds:13](https://github.com/destack-sh/destack/blob/main/language/library/src/collections/fixed-array.ds#L13)
