vector-victor/src/lib.rs
Andrew Cassidy 2829c52487 Yeet Scalar
A better solution may be needed for matrix*scalar ops than using `num` though
2022-11-16 22:53:53 -08:00

9 lines
113 B
Rust

extern crate core;
pub mod index;
mod macros;
mod matrix;
mod matrix_traits;
pub use matrix::{Matrix, Vector};