gpl-math 0.1.0

Gemachain Program Library Math
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Large uint types

// required for clippy
#![allow(clippy::assign_op_pattern)]
#![allow(clippy::ptr_offset_with_cast)]
#![allow(clippy::manual_range_contains)]

use uint::construct_uint;

construct_uint! {
    pub struct U256(4);
}
construct_uint! {
    pub struct U192(3);
}