swh_graph/map/
mod.rs

1// Copyright (C) 2023  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//! This module contains the data structures used to map a node id to a SWHID
7//! and vice versa and retrieve the labels for each node.
8
9mod node2swhid;
10pub use node2swhid::Node2SWHID;
11
12mod node2type;
13pub use node2type::{Node2Type, UsizeMmap};
14
15mod permutation;
16pub use permutation::{MappedPermutation, OwnedPermutation, Permutation};