break_infinity 0.3.0

A library for larger numbers up to 1e1.79e308 in Rust for Incremental Games
Documentation
#[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)
			}
		}
	};
}