char-alphabetic? -- r7rs Definition predicate;
char-alphabetic? (from vonuvoli);Procedure variants:
((character-ascii-alphabetic) -> (true))
character-ascii-alphabetic;true;((character-alphabetic) -> (true))
character-alphabetic;true;((character) -> (false))
scheme:char -- (scheme char);scheme -- (scheme);(char-alphabetic? char) (char-numeric? char) (char-whitespace? char) (char-upper-case? letter) (char-lower-case? letter)These procedures return
#tif their arguments are alphabetic, numeric, whitespace, upper case, or lower case characters, respectively, otherwise they return#f.Specifically, they must return
#twhen applied to characters with the Unicode properties Alphabetic, Numeric_Digit, White_Space, Uppercase, and Lowercase respectively, and#fwhen applied to any other Unicode characters. Note that many Unicode characters are alphabetic but neither upper nor lower case.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.