uint
uint copied to clipboard
`special`: todo!()
On 2022-05-28 @recmo wrote in d2363fc
“blocked”:
todo!()
/// This function will panic if `rhs` is 0 or the operation results in
/// overflow.
#[must_use]
pub fn next_multiple_of(self, rhs: Self) -> Self {
self.checked_next_multiple_of(rhs).unwrap();
todo!()
}
/// Calculates the smallest value greater than or equal to `self` that is a
/// multiple of `rhs`. Returns [`None`] is `rhs` is zero or the
From src/special.rs:70