A stack-allocated, constant-size, n-dimensional vector type implemented with const generics.
```rust use vectrs::Vector;
// construct from arrays, tuples, iterators, etc let v1 = Vector::from([-1, 0]); let v2 = Vector::from((3, 2)); let v3: Vector<_, 2> = std::iter::repeat(2).collect();
// numeric operations are implemented assert_eq!(v1 + v2, v3);
// access/mutate components using slice indexing or dedicated methods asserteq!(v2.x(), 3); asserteq!(v2[1], 2); ```
See the full documentation for more.
Licensed under either of
at your option.