Skip to main content

algosul_math/
lib.rs

1#![feature(portable_simd)]
2#![feature(f16, f128)]
3#![feature(impl_trait_in_assoc_type)]
4#![feature(array_repeat)]
5#![feature(negative_impls)]
6//! # Example
7//! + `Vector<T, N>`
8//! + `Matrix<T, ROW, COL>`
9//! + `Color<T; N>`
10
11#[cfg(feature = "serde")]
12use serde::{Deserialize, Serialize};
13
14#[cfg(feature = "color")]
15pub mod color;
16
17pub mod num;