String::to_ascii_uppercase()
Return a copy of this string with each ASCII lowercase letter converted to uppercase. Non-ASCII characters are unchanged.
"Hello World".to_ascii_uppercase() //-> "HELLO WORLD"
public method to_ascii_uppercase(this: String): String { __BUILT_IN_IMPLEMENTATION }