[][src]Function display_utils::lowercase

pub fn lowercase(source: &str) -> impl Display + '_

Print a Unicode-compliant lowercase version of the string.

Equivalent to str::to_lowercase.

assert_eq!(lowercase("GRÜẞE JÜRGEN").to_string(), "grüße jürgen");