algosul-math 0.0.5

Some user-friendly yet personalized tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![feature(portable_simd)]
#![feature(f16, f128)]
#![feature(impl_trait_in_assoc_type)]
#![feature(array_repeat)]
#![feature(negative_impls)]
//! # Example
//! + `Vector<T, N>`
//! + `Matrix<T, ROW, COL>`
//! + `Color<T; N>`

#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};

#[cfg(feature = "color")]
pub mod color;

pub mod num;