swh_graph_stdlib/collections/mod.rs
1// Copyright (C) 2024 The Software Heritage developers
2// See the AUTHORS file at the top-level directory of this distribution
3// License: GNU General Public License version 3, or any later version
4// See top-level LICENSE file for more information
5
6//! Helpful data structures to efficiently traverse the graph
7
8mod node_set;
9pub use node_set::*;
10
11mod paths;
12pub use paths::*;
13
14mod small_node_set;
15pub use small_node_set::*;