2 stable releases

1.0.3 Jun 13, 2023

#18 in #uint

Download history 78/week @ 2024-01-06 98/week @ 2024-01-13 39/week @ 2024-01-20 22/week @ 2024-01-27 27/week @ 2024-02-03 71/week @ 2024-02-10 105/week @ 2024-02-17 72/week @ 2024-02-24 200/week @ 2024-03-02 159/week @ 2024-03-09 194/week @ 2024-03-16 156/week @ 2024-03-23 118/week @ 2024-03-30 181/week @ 2024-04-06 251/week @ 2024-04-13 274/week @ 2024-04-20

831 downloads per month
Used in 2 crates (via ruint2)

Custom license

13KB
210 lines

The uint! macro for Uint and Bits literals

Within the uint! macro arguments, you can write Uint and Bits literals using the same syntax as Rust integer literals, but using a capital U or B suffix respectively. Note that there is ambiguity for hexadecimals with a B suffix, to lessen the impact an underscore is required in this case.

To use it simply import it in scope:

use ruint2::uint;

Now constants can be created in decimal, hex, binary and even octal:

# use ruint2::uint;
let avogadro = uint!(602_214_076_000_000_000_000_000_U256);
let cow_key = uint!(0xee79b5f6e221356af78cf4c36f4f7885a11b67dfcc81c34d80249947330c0f82_U256);
let bender = uint!(0b1010011010_U10);

The uint! macro recurses through the parse tree, so the above can equivalently be written

# use ruint2::uint;
uint!{
let avogadro = 602_214_076_000_000_000_000_000_U256;
let cow_key = 0xee79b5f6e221356af78cf4c36f4f7885a11b67dfcc81c34d80249947330c0f82_U256;
let bender = 0b1010011010_U10;
}

This latter form is particularly useful for lookup tables:

# use ruint2::{Uint, uint};
const PRIMES: [Uint<128, 2>; 3] = uint!([
    170141183460469231731687303715884105757_U128,
    170141183460469231731687303715884105773_U128,
    170141183460469231731687303715884105793_U128,
]);

The macro will throw a compile time error if you try to create a constant that does not fit the type:

# use ruint2::uint;
# uint!{
let sparta = 300_U8;
# }
error: Value too large for Uint<8>: 300
 --> src/example.rs:1:14
  |
1 | let sparta = 300_U8;
  |              ^^^^^^

References

No runtime deps