open_hypergraphs/strict/hypergraph/
mod.rs

1//! The category of hypergraphs has objects represented by [`Hypergraph`]
2//! and arrows by [`arrow::HypergraphArrow`].
3pub mod arrow;
4mod object;
5
6pub use object::*;