use miden_core::{Felt, ZERO};
use crate::math::uint::{Limbs, UintSpec};
#[derive(Debug, Default, Clone, Copy)]
pub struct U256;
impl U256 {
pub const ID: Felt = ZERO;
pub const ENCODED_MODULUS: Limbs = [0; 8];
pub const MAX: Limbs = [u32::MAX; 8];
}
impl UintSpec for U256 {
const ID: Felt = Self::ID;
const ENCODED_MODULUS: Limbs = Self::ENCODED_MODULUS;
}