//! Dense integer CSR adjacency index with interned node IDs and labels.
//!
//! Split across:
//! - `types` — struct definition, constructor, `Default`
//! - `interning` — node + label string↔id interning, node-label bitset
//! - `mutation` — `add_edge`, `remove_edge`, `remove_node_edges`
//! - `lookup` — neighbor queries, accessors, degree, iterators
pub use CsrIndex;
// Re-export shared Direction from nodedb-types via the types submodule.
pub use Direction;