cairo_lang_sierra/extensions/modules/
range_check.rsuse crate::extensions::NoGenericArgsGenericType;
use crate::ids::GenericTypeId;
#[derive(Default)]
pub struct RangeCheckType {}
impl NoGenericArgsGenericType for RangeCheckType {
const ID: GenericTypeId = GenericTypeId::new_inline("RangeCheck");
const STORABLE: bool = true;
const DUPLICATABLE: bool = false;
const DROPPABLE: bool = false;
const ZERO_SIZED: bool = false;
}
#[derive(Default)]
pub struct RangeCheck96Type {}
impl NoGenericArgsGenericType for RangeCheck96Type {
const ID: GenericTypeId = GenericTypeId::new_inline("RangeCheck96");
const STORABLE: bool = true;
const DUPLICATABLE: bool = false;
const DROPPABLE: bool = false;
const ZERO_SIZED: bool = false;
}