yali 0.1.1

Yet Another LargeInt Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::ops::Rem;

use crate::Number;

impl<const N: usize> Rem for Number<N> {
    fn rem(self, rhs: Self) -> Self::Output {
        self.divmod(rhs).1
    }

    type Output = Self;
}