/*!
Helpers for manipulating fixed-sized arrays.
*/
use eyre;
use crateError;
/**
Converts a dynamic-sized vector `Vec<T>` into a fixed-sized array
`[T; SIZE]`. Fails if the vector is not the same length as `SIZE`.
*/
/**
Converts a fixed-sized nested array `[[T; SIZE]; SIZE]` into a nested
vector `Vec<Vec<T>>`.
*/