wrapping_macros-0.4.13 doesn't have any documentation.
wrapping_macros

A macro for wrapping arithmetic.
Any code within a wrapping! { .. } block will be transformed as follows:
a + bbecomesa.wrapping_add(b). Similarly for-,*,/,%,<<,>>.a += bbecomesa = a.wrapping_add(b). Similarly for-=,*=,/=,%=,<<=,>>=.-abecomesa.wrapping_neg().
See this Internals thread for the motivation behind this crate.
Note: This crate uses internal compiler APIs, and so requires the Nightly version of Rust.
Cargo
Add this to your Cargo.toml:
= "*"
Example
Caveats
-
This crate uses unstable APIs, and will only work on Rust Nightly.
-
You cannot nest another macro invocation within a
wrapping!block. For example, this will not work:let x = 41i32; wrapping!Instead, move the macro call out of the block:
let x = 41i32; println!;