Math library aggregating several math modules.
```rust use wmath::adapter::prelude::*;
let x2original = wmath::X2::< u8 >( 1, 3 ); println!( "{:?}", x2original ); /* log : X2(1, 3) / let x2_to_array = x2_original.clone_as_array(); println!( "{:?}", x2_to_array ); / log : [1, 3] */ ```
sh
cargo add wmath
sh
git clone https://github.com/Wandalen/wMath
cd wMath
cd sample/rust/wmath_trivial
cargo run