mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-06-22 12:23:04 -07:00
15 lines
335 B
Rust
15 lines
335 B
Rust
//! Analysis module for name deconstruction and pattern detection.
|
|
//!
|
|
//! This module implements bottom-up analysis of vec names to detect
|
|
//! common denominators (prefixes/suffixes) and field positions.
|
|
|
|
mod names;
|
|
mod patterns;
|
|
mod positions;
|
|
mod tree;
|
|
|
|
pub use names::*;
|
|
pub use patterns::*;
|
|
pub use positions::*;
|
|
pub use tree::*;
|