lower_first

Function lower_first 

Source
pub fn lower_first(string: &str) -> String
Expand description

Converts the first character of string to lower case.

ยงExample

use lo_::lower_first;
assert_eq!(lower_first("Fred"), "fred");
assert_eq!(lower_first("FRED"), "fRED");