hugr_llvm/
utils.rs

1//! Module for utilities that do not depend on LLVM. These are candidates for
2//! upstreaming.
3#[deprecated(note = "This module is deprecated and will be removed in a future release.")]
4pub mod array_op_builder;
5pub mod fat;
6pub mod inline_constant_functions;
7pub mod int_op_builder;
8pub mod logic_op_builder;
9pub mod type_map;
10
11#[deprecated(note = "Import from hugr_core::std_extensions::collections::array.")]
12pub use hugr_core::std_extensions::collections::array::ArrayOpBuilder;
13pub use inline_constant_functions::inline_constant_functions;
14pub use int_op_builder::IntOpBuilder;
15pub use logic_op_builder::LogicOpBuilder;