1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/// Provides deconstantizea string.
///
/// Example string `Foo::Bar` becomes `Foo`
pub mod deconstantize;
/// Provides demodulize a string.
///
/// Example string `Foo::Bar` becomes `Bar`
pub mod demodulize;
/// Provides conversion to plural strings.
///
/// Example string `FooBar` -> `FooBars`
pub mod pluralize;
/// Provides conversion to singular strings.
///
/// Example string `FooBars` -> `FooBar`
pub mod singularize;

mod constants;