[go: up one dir, main page]

inflections 1.0.0

High performance inflection transformation library for changing properties of words like the case.
Documentation
1
2
3
4
5
6
7
8
9
10
11
# inflections
A Rust library for transforming one style of string to another focused on high performance.

Read the [documentation](http://calebmer.com/inflections/inflections) for more.

# Example
```rust
use inflections::Inflect;

assert_eq!("Hello World".to_camel_case(), "helloWorld".to_owned());
```