mod ops;
#[cfg(test)]
mod tests;
mod r#type;
use llzk_sys::mlirGetDialectHandle__llzk__array__;
use melior::dialect::DialectHandle;
pub use ops::{
ArrayCtor, extract, insert, is_array_extract, is_array_insert, is_array_len, is_array_new,
is_array_read, is_array_write, len, new, read, write,
};
pub use r#type::{ArrayType, is_array_type};
pub fn handle() -> DialectHandle {
unsafe { DialectHandle::from_raw(mlirGetDialectHandle__llzk__array__()) }
}
pub mod prelude {
pub use super::r#type::{ArrayType, is_array_type};
}