wedged 0.1.1

A robust and generalized library for Geometric Algebra in Rust.
Documentation
//!
//! Items common to all subsystems
//!

pub use self::storage::*;
pub use self::alloc::*;
pub use self::dim::*;
pub use self::coordinates::*;
pub use self::ops::*;
pub use self::count::*;
pub use self::basis_blade::*;

pub mod storage;
pub mod alloc;
pub mod dim;
pub mod coordinates;
pub mod ops;

mod count;
mod basis_blade;