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