mathio 0.2.5

A lightweight, simple and straight-forward opinionated library for math used in other projects
Documentation
1
2
3
4
5
6
7
8
9
10
11
//documentation
#![doc = include_str!("../README.md")]


mod fractions;
mod period;
mod tween;

pub use crate::fractions::*;
pub use crate::period::*;
pub use crate::tween::*;