gpl_math/
uint.rs

1//! Large uint types
2
3// required for clippy
4#![allow(clippy::assign_op_pattern)]
5#![allow(clippy::ptr_offset_with_cast)]
6#![allow(clippy::manual_range_contains)]
7
8use uint::construct_uint;
9
10construct_uint! {
11    pub struct U256(4);
12}
13construct_uint! {
14    pub struct U192(3);
15}