1 2 3 4 5 6 7 8
//! Utilities related to MLIR attributes. use melior::ir::{Attribute, Identifier}; pub mod array; /// An attribute associated to a name. pub type NamedAttribute<'c> = (Identifier<'c>, Attribute<'c>);