pub mod aggregate;
pub mod algos;
pub mod pips;
pub mod reqtree;
pub mod statmap;
pub mod traits;
#[cfg(feature = "fetch")]
pub mod datafetch;
#[must_use]
pub fn name_to_identifier(s: &str) -> String {
s.replace(' ', "_")
.replace(['[', ']', '\'', ':', '(', ')', ','], "")
.replace(['-'], "_")
.to_lowercase()
}