Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions hugr-core/src/std_extensions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ pub fn std_reg() -> ExtensionRegistry {
arithmetic::float_types::EXTENSION.to_owned(),
collections::array::EXTENSION.to_owned(),
collections::list::EXTENSION.to_owned(),
collections::borrow_array::EXTENSION.to_owned(),
collections::static_array::EXTENSION.to_owned(),
collections::value_array::EXTENSION.to_owned(),
logic::EXTENSION.to_owned(),
Expand Down
1 change: 1 addition & 0 deletions hugr-core/src/std_extensions/collections.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
//! List type and operations.

pub mod array;
pub mod borrow_array;
pub mod list;
pub mod static_array;
pub mod value_array;
2 changes: 1 addition & 1 deletion hugr-core/src/std_extensions/collections/array.rs
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ pub trait ArrayOpBuilder: GenericArrayOpBuilder {
self.add_generic_array_unpack::<Array>(elem_ty, size, input)
}
/// Adds an array clone operation to the dataflow graph and return the wires
/// representing the originala and cloned array.
/// representing the original and cloned array.
///
/// # Arguments
///
Expand Down
Loading
Loading