[][src]Function display_utils::uppercase

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

Print a Unicode-compliant uppercase version of the string.

Equivalent to str::to_uppercase.

assert_eq!(uppercase("grüße jürgen").to_string(), "GRÜSSE JÜRGEN");