wmath

Crates.iowmath
lib.rswmath
version0.3.8
sourcesrc
created_at2022-04-28 20:04:41.402433
updated_at2022-07-18 08:13:17.847461
descriptionMath library aggregating several math modules.
homepagehttps://github.com/Wandalen/wMath/tree/master/module/rust/wmath
repositoryhttps://github.com/Wandalen/wMath/tree/master/module/rust/wmath
max_upload_size
id576989
size52,110
Wandalen (Wandalen)

documentation

https://docs.rs/wmath

README

Module :: wmath experimental rust-status docs.rs Open in Gitpod

discord

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 wmath

Try out from the repository

git clone https://github.com/Wandalen/wMath
cd wMath
cd sample/rust/wmath_trivial
cargo run
Commit count: 0

cargo fmt