mod generated;
pub trait IndexU8 {
fn value(self) -> usize;
}
pub trait IndexU32 {
fn value(self) -> usize;
}
#[allow(clippy::exhaustive_structs)]
pub struct I<const T: usize>;
#[macro_export]
macro_rules! index {
($indexor:literal) => {
I::<$indexor>
};
}