Type Alias assembly_pack::common::CRCTree
source · pub type CRCTree<T> = BTreeMap<CRC, T>;
Expand description
Datastructure to hold a CRC tree.
Within the file, the trees are sorted by CRC value and organised in binary tree. This is not necessarily the same as the Rust B-Tree, but the ordering is good enough for what we need.
Aliased Type§
struct CRCTree<T> { /* private fields */ }