break_infinity 0.4.0

A library for larger numbers up to 1e9e15 in Rust for Incremental Games
Documentation
1
2
3
4
5
6
7
8
9
10
#[macro_export]
macro_rules! impl_from {
	($from_type:ty) => {
		impl From<$from_type> for Decimal {
			fn from(num: $from_type) -> Decimal {
				Decimal::new(num as f64)
			}
		}
	};
}