1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use num::arithmetic::traits::CheckedDiv;

macro_rules! impl_checked_div {
    ($t:ident) => {
        impl CheckedDiv<$t> for $t {
            type Output = $t;

            /// This is a wrapper over the `checked_div` functions in the standard library, for
            /// example [this one](u32::checked_div).
            #[inline]
            fn checked_div(self, other: $t) -> Option<$t> {
                $t::checked_div(self, other)
            }
        }
    };
}
apply_to_primitive_ints!(impl_checked_div);