Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 289 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 289 Bytes

inflections

A Rust library for transforming one style of string to another focused on high performance.

Read the documentation for more.

Example

use inflections::Inflect;

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