klyn.Char.toUpper
method
public native static toUpper(value as Char) as Char
Description

Converts a character to uppercase when an uppercase mapping exists.

Parameters
ParameterDescription
valueCharacter to convert.
Returns

The uppercase character, or value when it has no uppercase mapping.

Example
assert Char.toUpper('a') == 'A'