| Crates.io | wmath |
| lib.rs | wmath |
| version | 0.3.8 |
| created_at | 2022-04-28 20:04:41.402433+00 |
| updated_at | 2022-07-18 08:13:17.847461+00 |
| description | Math library aggregating several math modules. |
| homepage | https://github.com/Wandalen/wMath/tree/master/module/rust/wmath |
| repository | https://github.com/Wandalen/wMath/tree/master/module/rust/wmath |
| max_upload_size | |
| id | 576989 |
| size | 52,110 |
Math library aggregating several math modules.
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] */
cargo add wmath
git clone https://github.com/Wandalen/wMath
cd wMath
cd sample/rust/wmath_trivial
cargo run