//! Helpers related to the onchain storage representation of this crate's numerical types.
useaf_sui_types::u256::U256;pubfngreatest_bit()-> U256{U256::one()<<255_u8}pubfnnot_greatest_bit()-> U256{greatest_bit()-U256::one()}/// Maximal possible (positive) value of i256 that equals 2^255 - 1.
pubfnmax_i256()-> U256{not_greatest_bit()}