recmo/uint

`support/num_traits`: Move out of support.

Closed this issue · 1 comments

On 2023-08-28 @recmo wrote in 585c5ce “Merge pull request #298 from recmo/num-traits”:

Move out of support.

    fn checked_rem(&self, other: &Self) -> Option<Self> {
        <Self>::checked_rem(*self, *other)
    }
}

// TODO: Move out of support.
impl<const BITS: usize, const LIMBS: usize> Shl<u32> for Uint<BITS, LIMBS> {
    type Output = Self;

    #[inline(always)]
    fn shl(self, rhs: u32) -> Self::Output {

From src/support/num_traits.rs:128

clsoing in favor of #327