Expand description
.Math library with adapters.
Module :: wmath

Math library aggregating several math modules.
Sample
use wmath::adapter::prelude::*;
let x2_original = wmath::X2::< u8 >( 1, 3 );
println!( "{:?}", x2_original );
/* log : X2(1, 3) */
let x2_to_array = x2_original.clone_as_array();
println!( "{:?}", x2_to_array );
/* log : [1, 3] */To add to your project
cargo add wmathTry out from the repository
git clone https://github.com/Wandalen/wMath
cd wMath
cd sample/rust/wmath_trivial
cargo runRe-exports
pub use math_adapter as adapter;pub use exposed::*;Modules
Basics.
Namespace with dependencies.
Exposed namespace of the module.
Prelude to use essentials: use my_module::prelude::*.