howmany 3.0.0

A blazingly fast, intelligent code analysis tool with parallel processing, caching, and beautiful visualizations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod types;
pub mod counter;
pub mod detector;
pub mod filters;
pub mod stats;
pub mod patterns;

pub use types::{CodeStats, FileStats};
pub use counter::CodeCounter;
pub use detector::FileDetector;
pub use filters::FileFilter;
pub use stats::StatsCalculator;
pub use patterns::PatternMatcher;