EMA-XPS Online


LOWER-CASE-P

LOWER-CASE-P
============

Syntax: (lower-case-p <character>)

This function checks, whether the argument is a
lowercase character. It returns T, when the test 
was successful, otherwise NIL.

uppercase-character:                   A...Z
lowercase-character:                   a...z
digit-character:                       0...9
alphanumeric-character:                A...Z, a...z
                                       and 0...9

example:       >(lower-case-p #\a)
               T


EMA-XPS Online