1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
#![cfg_attr(feature = "clippy", allow(clippy::use_self))]

use crate::{
    linkedbytes::{LBNum, LBNumRef},
    DivRem, DivRemAssign,
};
use core::ops;

impl DivRem<&Self> for LBNum {
    type Quotient = Self; type Remainder = Self;

    /// Performs combined integer division and remainder calculation.
    ///
    /// # Panics
    /// Dividing by 0 triggers an immediate panic.
    #[inline(always)]
    fn div_rem(mut self, rhs: &Self) -> (Self, Self) {
        let remainder = self.div_rem_assign(rhs);
        (self, remainder)
    }
}
impl DivRem<Self> for LBNum {
    type Quotient = Self; type Remainder = Self;

    /// Performs combined integer division and remainder calculation.
    ///
    /// # Panics
    /// Dividing by 0 triggers an immediate panic.
    #[inline(always)]
    fn div_rem(self, rhs: Self) -> (Self, Self) {
        self.div_rem(&rhs)
    }
}
impl DivRemAssign<&Self> for LBNum {
    type Remainder = Self;

    /// Performs in-place integer division combined with returning the remainder.
    ///
    /// # Panics
    /// Dividing by 0 triggers an immediate panic.
    #[inline]
    fn div_rem_assign(&mut self, rhs: &Self) -> Self {
        assert!(rhs > &0_u8);
        let mut quotient = Self::ZERO;
        loop {
            if (self as &Self) < rhs {break;}
            unsafe {self.checked_sub_assign(rhs.into());}
            quotient.increment();
        }
        core::mem::replace(self, quotient) // This moves the remainder out of self, moves the quotient and tail-returns it to the callee.
                                           // While this kind of call might indeed be unintuitive, reading the core::mem::replace docs is
                                           // all you need to do to understand this just fine.
    }
}
impl DivRemAssign<Self> for LBNum {
    type Remainder = Self;

    /// Performs in-place integer division combined with returning the remainder.
    ///
    /// # Panics
    /// Dividing by 0 triggers an immediate panic.
    #[inline(always)]
    fn div_rem_assign(&mut self, rhs: Self) -> Self {
        self.div_rem_assign(&rhs)
    }
}
impl DivRemAssign<LBNumRef<'_>> for LBNum {
    type Remainder = Self;

    /// Performs in-place integer division combined with returning the remainder.
    ///
    /// # Panics
    /// Dividing by 0 triggers an immediate panic.
    fn div_rem_assign(&mut self, rhs: LBNumRef<'_>) -> Self {
        assert!(rhs > 0_u8);
        let mut quotient = Self::ZERO;
        loop {
            if *self < rhs {break;}
            unsafe {self.checked_sub_assign(rhs);}
            quotient.increment();
        }
        core::mem::replace(self, quotient) // This moves the remainder out of self, moves the quotient and tail-returns it to the callee.
                                           // While this kind of call might indeed be unintuitive, reading the core::mem::replace docs is
                                           // all you need to do to understand this just fine.
    }
}
impl ops::Div<&Self> for LBNum {
    type Output = Self;

    /// Performs integer division.
    ///
    /// # Panics
    /// Dividing by 0 triggers an immediate panic.
    #[inline(always)]
    fn div(self, rhs: &Self) -> Self {
        self.div_rem(rhs).0
    }
}
impl ops::Div<Self> for LBNum {
    type Output = Self;

    /// Performs integer division.
    ///
    /// # Panics
    /// Dividing by 0 triggers an immediate panic.
    #[inline(always)]
    fn div(self, rhs: Self) -> Self {
        self / &rhs
    }
}
impl ops::DivAssign<&Self> for LBNum {
    /// Performs integer division in place.
    ///
    /// # Panics
    /// Dividing by 0 triggers an immediate panic.
    #[inline(always)]
    fn div_assign(&mut self, rhs: &Self) {
        self.div_rem_assign(rhs);
    }
}
impl ops::DivAssign<Self> for LBNum {
    /// Performs integer division in place.
    ///
    /// # Panics
    /// Dividing by 0 triggers an immediate panic.
    #[inline(always)]
    fn div_assign(&mut self, rhs: Self) {
        *self /= &rhs;
    }
}
impl ops::Rem<&Self> for LBNum {
    type Output = Self;

    /// Performs integer modulo.
    ///
    /// # Panics
    /// Dividing by 0 triggers an immediate panic.
    #[inline(always)]
    fn rem(self, rhs: &Self) -> Self {
        self.div_rem(rhs).1
    }
}
impl ops::Rem<Self> for LBNum {
    type Output = Self;
    /// Performs integer modulo.
    ///
    /// # Panics
    /// Dividing by 0 triggers an immediate panic.
    #[inline(always)]
    fn rem(self, rhs: Self) -> Self {
        self % &rhs
    }
}
impl ops::RemAssign<&Self> for LBNum {
    /// Performs integer modulo in place.
    ///
    /// # Panics
    /// Dividing by 0 triggers an immediate panic.
    #[inline(always)]
    fn rem_assign(&mut self, rhs: &Self) {
        let remainder = self.div_rem_assign(rhs);
        *self = remainder;
    }
}
impl ops::RemAssign<Self> for LBNum {
    /// Performs integer modulo in place.
    ///
    /// # Panics
    /// Dividing by 0 triggers an immediate panic.
    #[inline(always)]
    fn rem_assign(&mut self, rhs: Self) {
        *self %= &rhs;
    }
}

macro_rules! impl_div_by_primitive {
    ($ty:ident) => {
        impl DivRem<$ty> for LBNum {
            type Quotient = Self;
            /// The remainder type.
            ///
            /// The reason why this is `Self` instead of the type of the divisor is that the remainder as available when the division is finished is still of type `LBNum`: it's never converted to the divisor type. As a result, the remainder is returned as-is to avoid situations when the remainder is required to be an `LBNum` yet has been converted to the divisor type, which would require converting it back into `LBNum`, which would require another allocation *and* performing the conversion process itself and would also waste the previous buffer.
            type Remainder = Self;

            #[inline(always)]
            fn div_rem(mut self, rhs: $ty) -> (Self, Self) {
                let remainder = self.div_rem_assign(rhs);
                (self, remainder)
            }
        }
        impl DivRemAssign<$ty> for LBNum {
            /// The remainder type.
            ///
            /// The reason why this is `Self` instead of the type of the divisor is that the remainder as available when the division is finished is still of type `LBNum`: it's never converted to the divisor type. As a result, the remainder is returned as-is to avoid situations when the remainder is required to be an `LBNum` yet has been converted to the divisor type, which would require converting it back into `LBNum`, which would require another allocation *and* performing the conversion process itself and would also waste the previous buffer.
            type Remainder = Self;

            #[inline]
            fn div_rem_assign(&mut self, rhs: $ty) -> Self {
                assert!(rhs > 0);
                let mut quotient = Self::ZERO;
                loop {
                    if (self as &Self) < &rhs {break;}
                    unsafe {self.checked_sub_assign(LBNum::from(rhs).borrow());}
                    quotient.increment();
                }
                core::mem::replace(self, quotient)
            }
        }


        impl ops::Div<$ty> for LBNum {
            type Output = Self;

            #[inline(always)]
            fn div(mut self, rhs: $ty) -> Self {
                self /= rhs;
                self
            }
        }
        impl ops::DivAssign<$ty> for LBNum {
            #[inline]
            fn div_assign(&mut self, rhs: $ty) {
                assert!(rhs > 0);
                let mut result = Self::ZERO;
                loop {
                    if (self as &Self) < &rhs {break;}
                    unsafe {self.checked_sub_assign(LBNum::from(rhs).borrow());}
                    result.increment();
                }
                *self = result;
            }
        }

        impl ops::Rem<$ty> for LBNum {
            /// The remainder type.
            ///
            /// The reason why this is `Self` instead of the type of the divisor is that the remainder as available when the division is finished is still of type `LBNum`: it's never converted to the divisor type. As a result, the remainder is returned as-is to avoid situations when the remainder is required to be an `LBNum` yet has been converted to the divisor type, which would require converting it back into `LBNum`, which would require another allocation *and* performing the conversion process itself and would also waste the previous buffer.
            type Output = Self;
            #[inline(always)]
            fn rem(self, rhs: $ty) -> Self {
                self.div_rem(rhs).1
            }
        }
        impl ops::RemAssign<$ty> for LBNum {
            #[inline(always)]
            fn rem_assign(&mut self, rhs: $ty) {
                let remainder = self.div_rem_assign(rhs);
                *self = remainder
            }
        }
    };
}

impl_div_by_primitive!(u8   );
impl_div_by_primitive!(u16  );
impl_div_by_primitive!(u32  );
impl_div_by_primitive!(u64  );
impl_div_by_primitive!(u128 );
impl_div_by_primitive!(usize);