uint icon indicating copy to clipboard operation
uint copied to clipboard

`special`: todo!()

Open github-actions[bot] opened this issue 2 years ago • 0 comments

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

github-actions[bot] avatar May 28 '22 18:05 github-actions[bot]