1//! A minimal set of array operations which are sufficient to implement open hypergraphs. 2pub mod traits; 3pub mod vec; 4 5pub use traits::*;