mod generated;
pub trait IndexRangeU8 {
fn start(self) -> u8;
fn end(self) -> u8;
}
pub trait IndexRangeU32 {
fn start(self) -> u32;
fn end(self) -> u32;
}
#[derive(Clone, Copy)]
#[allow(clippy::exhaustive_structs)]
pub struct IR<const START: usize, const END: usize>;
#[macro_export]
macro_rules! indices {
($start:literal, $end:literal) => {};
}