|
SketchyLISP Reference |
Copyright (C) 2007 Nils M Holm |
| <<[char-downcase] | [Index] | [char-numeric?]>> |
Conformance: R5RS Scheme
Purpose: Test whether a char is a lower case letter.
Arguments:
X - char
Implementation:
(define (char-lower-case? x)
(and (char<=? #\a x)
(char<=? x #\z)))
Example:
(char-lower-case? #\z) => #t
See also:
char-upper-case?,
char-alphabetic?.
| <<[char-downcase] | [Index] | [char-numeric?]>> |