libutils-array 0.0.1

A maximum-sized array stored on the stack
Documentation
1
2
3
4
5
6
7
8
9
10
11
# array

`Array<Type, N>` is an stack-allocated vector of maximum capacity `N`.

It exposes an API similar to `Vec` and allows for the same operations, but panics if its length exceeds capacity.

Since most of its implementations are const, it is very fast.

It is well-suited for contexts in which you know the capacity of a vector isn't going to exceed a certain small number.

See [the documentation](https://docs.rs/libutils-array) for more information.