u256
type is composed of two 128-bit parts: the low part [0, 128) and the high part [128,
256).
u256
type is composed of two 128-bit parts: the low part [0, 128) and the high part [128,
256).
#[derive(Copy, Drop, Hash, PartialEq, Serde)]
pub struct u256 {
pub low: u128,
pub high: u128,
}
pub low: u128
pub high: u128
Was this page helpful?