public native static toUpper(value as Char) as Char
Converts a character to uppercase when an uppercase mapping exists.
| Parameter | Description |
|---|---|
value | Character to convert. |
The uppercase character, or value when it has no uppercase mapping.
assert Char.toUpper('a') == 'A'