ch>upper ( ch -- upper )
Unicode data tables
Prev:category ( char -- category )
Next:ch>lower ( ch -- lower )


Vocabulary
unicode.data

Inputs and outputs
cha code point
uppera code point


Word description
Returns the simple upper-cased version of the code point, if it exists. This does not handle context-sensitive or locale-dependent properties of linguistically accurate case conversion, and does not correctly handle characters which become multiple characters on conversion to this case.

Definition
USING: assocs kernel unicode.data.private ;

IN: unicode.data

: ch>upper ( ch -- upper ) simple-upper ?at drop ; inline