fastnum 0.7.4

Fast decimal numbers library
Documentation
1
2
3
4
5
use core::ops::{Div, DivAssign};

use crate::decimal::{impls::ops::ops_impl, UnsignedDecimal};

ops_impl!(UnsignedDecimal, U, Div, div, DivAssign, div_assign);