fastnum 0.7.4

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

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

ops_impl!(UnsignedDecimal, U, Rem, rem, RemAssign, rem_assign);