File tree 4 files changed +8
-2
lines changed
hugr-core/src/std_extensions/collections
4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 3
3
mod array_op;
4
4
mod array_repeat;
5
5
mod array_scan;
6
- pub mod builder ;
6
+ pub mod op_builder ;
7
7
8
8
use std:: sync:: Arc ;
9
9
@@ -27,7 +27,7 @@ use crate::Extension;
27
27
pub use array_op:: { ArrayOp , ArrayOpDef , ArrayOpDefIter } ;
28
28
pub use array_repeat:: { ArrayRepeat , ArrayRepeatDef , ARRAY_REPEAT_OP_ID } ;
29
29
pub use array_scan:: { ArrayScan , ArrayScanDef , ARRAY_SCAN_OP_ID } ;
30
- pub use builder :: ArrayOpBuilder ;
30
+ pub use op_builder :: ArrayOpBuilder ;
31
31
32
32
/// Reported unique name of the array type.
33
33
pub const ARRAY_TYPENAME : TypeName = TypeName :: new_inline ( "array" ) ;
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
//! Module for utilities that do not depend on LLVM. These are candidates for
2
2
//! upstreaming.
3
+ #[ deprecated( note = "This module is deprecated and will be removed in a future release." ) ]
4
+ pub mod array_op_builder;
3
5
pub mod fat;
4
6
pub mod inline_constant_functions;
5
7
pub mod int_op_builder;
6
8
pub mod logic_op_builder;
7
9
pub mod type_map;
8
10
11
+ #[ deprecated( note = "Import from hugr_core::std_extensions::collections::array." ) ]
12
+ pub use array_op_builder:: ArrayOpBuilder ;
9
13
pub use inline_constant_functions:: inline_constant_functions;
10
14
pub use int_op_builder:: IntOpBuilder ;
11
15
pub use logic_op_builder:: LogicOpBuilder ;
Original file line number Diff line number Diff line change
1
+ #[ deprecated( note = "Import from hugr_core::std_extensions::collections::array." ) ]
2
+ pub use hugr_core:: std_extensions:: collections:: array:: op_builder:: * ;
You can’t perform that action at this time.
0 commit comments