naming_lib 0.1.4

Library for identifying and converting identifiers naming format (case | notation).
Documentation
//! Library for identifying and converting identifiers naming format (case | notation).
//!
//! It serves three purposes:
//!
//! 1. Judge if an identifier is written in a certain format.
//! (example: [is_camel()](crate::detector::is_camel()))
//!
//! 2. Automatically identify format with [which_case()](crate::detector::which_case()).
//!
//! 3. Convert identifiers between different naming formats.
//! (example: [to_camel()](NamingCase::to_camel()))

// Just re-expose every public component in two modules.
// We'll test them in integrate tests.

pub use detector::*;
pub use naming_case::*;

mod naming_case;
mod detector;