Expand description

This crate is an implementation of the Unicode Title Casing algorithm. It implements a trait on char that adds title case handling methods. These methods are very similar to how the std library currently handles uppercase and lowercase.

Structs

An iterator over a titlecase mapped char.

Traits

This trait adds title case methods to char. They function the same as the std library’s char::to_lowercase and char::to_uppercase using a custom ToTitleCase iterator.

Functions

Accepts a char and returns the Unicode Title Case for that character as a 3 char array.

Accepts a char and returns the Unicode Title Case for that character as a 3 char array.