1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
macro_rules! impl_desc {
    () => {
        doc::arithmetic_impl_desc!("Unchecked", "unchecked", "Each method results in undefined behavior if overflow/underflow occurs, i.e. when the checked equivalent would return `None`.")
    };
}

pub(crate) use impl_desc;

crate::doc::link_doc_comment!(
    unchecked_add,
    unchecked_mul,
    unchecked_shl,
    unchecked_shr,
    unchecked_sub
);