Garden 🌻

String::to_ascii_uppercase()

Return a copy of this string with each ASCII lowercase letter converted to uppercase. Non-ASCII characters are unchanged.

Example
"Hello World".to_ascii_uppercase() //-> "HELLO WORLD"
Source Code
public method to_ascii_uppercase(this: String): String {
  __BUILT_IN_IMPLEMENTATION
}