pub const ZERO_U256 = 0x00u256
Expand description
A u256 of zero value.
Additional Information
WARNING This constant has been deprecated. u256::zero()
should be used instead.
Examples
use std::constants::ZERO_U256;
fn foo() {
assert(ZERO_U256 == u256::from(0_u64));
}