melior 0.27.1

The rustic MLIR bindings in Rust
//! IR objects and builders.

mod affine_expr;
mod affine_map;
pub mod attribute;
pub mod block;
pub mod bytecode_writer_config;
mod identifier;
mod location;
mod module;
pub mod operation;
mod region;
pub mod r#type;
mod value;

pub use self::{
    affine_expr::AffineExpr,
    affine_map::AffineMap,
    attribute::{Attribute, AttributeLike},
    block::{Block, BlockLike, BlockRef},
    bytecode_writer_config::BytecodeWriterConfig,
    identifier::Identifier,
    location::Location,
    module::Module,
    operation::{Operation, OperationRef},
    region::{Region, RegionLike, RegionRef},
    r#type::{ShapedTypeLike, Type, TypeLike},
    value::{Value, ValueLike},
};