1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/// Provides deconstantize a string.
///
/// Example string `Foo::Bar` becomes `Foo`
pub use deconstantize;
/// Provides demodulize a string.
///
/// Example string `Foo::Bar` becomes `Bar`
pub use demodulize;
/// Provides conversion to plural strings.
///
/// Example string `FooBar` -> `FooBars`
pub use to_plural;
/// Provides conversion to singular strings.
///
/// Example string `FooBars` -> `FooBar`
pub use to_singular;