debtmap 0.22.0

Code complexity and technical debt analyzer
Documentation
1
2
3
4
5
6
7
8
9
//! Collection types used by Debtmap's analysis graph and result models.
//!
//! These aliases keep collection choices explicit at module boundaries while relying on the
//! maintained standard library rather than an external persistent-collection implementation.

pub use std::collections::{HashMap, HashSet};

/// Ordered, contiguous collection used for result and graph edge lists.
pub type Vector<T> = Vec<T>;