yali 0.1.1

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

use crate::Number;

impl<const N: usize> Div for Number<N> {
    fn div(self, rhs: Self) -> Self::Output {
        self.divmod(rhs).0
    }

    type Output = Self;
}