#checked-arithmetic #overflow #checked #no-panic #no-alloc #arithmetic

no-std smooth-operator

Procedural macro that transforms regular infix arithmetic expressions into checked arithmetic expressions

1 unstable release

0.7.2 Dec 13, 2024

#376 in Math

Download history 118/week @ 2024-12-08 203/week @ 2024-12-15 72/week @ 2024-12-22 83/week @ 2024-12-29 168/week @ 2025-01-05 234/week @ 2025-01-12 283/week @ 2025-01-19 402/week @ 2025-01-26 756/week @ 2025-02-02 1338/week @ 2025-02-09 1905/week @ 2025-02-16 1460/week @ 2025-02-23 1703/week @ 2025-03-02 1943/week @ 2025-03-09 722/week @ 2025-03-16 1015/week @ 2025-03-23

5,411 downloads per month
Used in 44 crates (16 directly)

MIT license

7KB
77 lines

smooth-operator

Procedural macro that transforms regular infix arithmetic expressions into checked arithmetic expressions.

Example

The following invocation of checked!():

fn the_answer() -> Result<i32, Error> {
    let answer = checked!(410 / 10 + 1)?;
    Ok(answer)
}

Results in this output:

fn the_answer() -> Result<i32, Error> {
    let answer = (|| -> ::core::result::Result<_, crate::Error> {
        type Err = crate::Error;
        const ORIGINAL_EXPR: &'static str = "410 / 10 + 1";
        Ok(
            #[allow(clippy::needless_question_mark)]
            #[allow(unused_parens)]
            {
                410.checked_div(10)
                    .ok_or(Err {
                        expr: ORIGINAL_EXPR,
                        __op_ix: 5usize,
                        __op_len: 1usize,
                    })?
                    .checked_add(1)
                    .ok_or(Err {
                        expr: ORIGINAL_EXPR,
                        __op_ix: 10usize,
                        __op_len: 1usize,
                    })?
            },
        )
    })()?;
    Ok(answer)
}

Dependencies

~205–640KB
~15K SLoC