char-upcase
-- r7rs
Definition procedure
;
char-upcase
(from vonuvoli
);Procedure variants:
((character-ascii) -> (character-ascii))
character-ascii
;character-ascii
;((character) -> (character))
scheme:char
-- (scheme char)
;scheme
-- (scheme)
;(char-upcase char) (char-downcase char) (char-foldcase char)
The
char-upcase
procedure, given an argument that is the lowercase part of a Unicode casing pair, returns the uppercase member of the pair, provided that both characters are supported by the Scheme implementation. Note that language-sensitive casing pairs are not used. If the argument is not the lowercase member of such a pair, it is returned.The
char-downcase
procedure, given an argument that is the uppercase part of a Unicode casing pair, returns the lowercase member of the pair, provided that both characters are supported by the Scheme implementation. Note that language-sensitive casing pairs are not used. If the argument is not the uppercase member of such a pair, it is returned.The
char-foldcase
procedure applies the Unicode simple case-folding algorithm to its argument and returns the result. Note that language-sensitive folding is not used. If the argument is an uppercase letter, the result will be either a lowercase letter or the same as the argument if the lowercase letter does not exist or is not supported by the implementation. See UAX #29 (part of the Unicode Standard) for details.Note that many Unicode lowercase characters do not have uppercase equivalents.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.