vectrs

Crates.io Version Docs.rs Latest Build Status

NOTE: this crate was renamed to vectrix, please use it under the new name.

A stack-allocated, constant-size, n-dimensional vector type implemented with const generics.

This crate will work on stable Rust from Rust v1.51 onwards.

Example usage

```rust use vectrs::Vector;

// construct from arrays, tuples, iterators, etc let v1 = Vector::new([-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.

License

Licensed under either of

at your option.