Next: Lists, Previous: Sequences and Arrays and Hash Tables, Up: Top [Contents][Index]
Package:LISP
Given an argument acceptable to string, Returns a character object whose name is NAME if one exists. Returns NIL otherwise. NAME must be an object that can be coerced to a string.
Package:LISP
Returns the name for CHAR as a string; NIL if CHAR has no name. Only #\Backspace, #\Tab, #\Newline (or #\Linefeed), #\Page, #\Return, and #\Rubout have names.
Package:LISP
Returns T if CHAR is an alphabetic character; NIL otherwise. Equivalent to ALPHA-CHAR-P.
Package:LISP
Returns the character object representing the INDEX-th character in STRING. This is faster than CHAR.
Package:LISP The bit that indicates a super character.
Package:LISP The upper exclusive bound on values produced by CHAR-FONT.
Package:LISP
Returns the lower-case equivalent of CHAR, if any. If not, simply returns CHAR.
Package:LISP
Returns T if CHAR can be stored in a string. In GCL, this function always returns T since any character in GCL can be stored in a string.
Package:LISP
Returns T if the codes of CHARs are in strictly non-increasing order; NIL otherwise. For a lower-case character, the code of its upper-case equivalent is used.
Package:LISP
Compiles the form specified by THING and prints the intermediate C language code for that form. But does NOT install the result of compilation. If THING is a symbol that names a not-yet-compiled function, the function definition is disassembled. If THING is a lambda expression, it is disassembled as a function definition. Otherwise, THING itself is disassembled as a top-level form.
Package:LISP
Returns T if CHAR is a lower-case character; NIL otherwise.
Package:LISP
Returns T if the codes of CHARs are in strictly non-decreasing order; NIL otherwise.
Package:LISP The bit that indicates a hyper character.
Package:LISP
Returns a character object with the specified code, if any. If not, returns NIL.
Package:LISP
Returns the code attribute of CHAR.
Package:LISP The bit that indicates a control character.
Package:LISP
Returns T if the codes of CHARs are in strictly increasing order; NIL otherwise. For a lower-case character, the code of its upper-case equivalent is used.
Package:LISP
Returns the font attribute of CHAR.
Package:LISP
Returns T if the codes of CHARs are in strictly increasing order; NIL otherwise.
Package:LISP
Returns T if the codes of CHARs are in strictly non-increasing order; NIL otherwise.
Package:LISP The bit that indicates a meta character.
Package:LISP
Returns T if CHAR is a printing character, i.e., #\Space through #\~; NIL otherwise.
Package:LISP
Returns T if no two of CHARs are the same character; NIL otherwise. Upper case character and its lower case equivalent are regarded the same.
Package:LISP The upper exclusive bound on values produced by CHAR-BITS.
Package:LISP
Returns T if X is a character; NIL otherwise.
Package:LISP
Returns T if all CHARs are the same character; NIL otherwise.
Package:LISP
Returns T if CHAR is an alphabetic character, A-Z or a-z; NIL otherwise.
Package:LISP
Returns T if CHAR is an upper-case character; NIL otherwise.
Package:LISP
Returns T if the named bit is on in the character CHAR; NIL otherwise. In GCL, this function always returns NIL.
Package:LISP
Returns a character object with the same code attribute as CHAR and with the specified BITS and FONT attributes.
Package:LISP
Coerces X into a character object if possible.
Package:LISP
Returns T if all of its arguments are the same character; NIL otherwise. Upper case character and its lower case equivalent are regarded the same.
Package:LISP
Returns T if the codes of CHARs are in strictly non-decreasing order; NIL otherwise. For a lower-case character, the code of its upper-case equivalent is used.
Package:LISP
Returns T if the codes of CHARs are in strictly decreasing order; NIL otherwise.
Package:LISP
Returns T if CHAR is a standard character, i.e., one of the 95 ASCII printing characters #\Space to #\~ and #Newline; NIL otherwise.
Package:LISP
Returns the upper-case equivalent of CHAR, if any. If not, simply returns CHAR.
Package:LISP
If CHAR represents a digit in RADIX, then returns the weight as an integer. Otherwise, returns nil.
Package:LISP
Returns T if no two of CHARs are the same character; NIL otherwise.
Package:LISP
Returns T if the codes of CHARs are in strictly decreasing order; NIL otherwise. For a lower-case character, the code of its upper-case equivalent is used.
Package:LISP
Returns T if CHAR is either numeric or alphabetic; NIL otherwise.
Package:LISP
Returns the bits attribute (which is always 0 in GCL) of CHAR.
Package:LISP
Returns a character object that represents the DIGIT in the specified RADIX. Returns NIL if no such character exists.
Package:LISP
Returns a character just like CHAR except that the named bit is set or cleared, according to whether NEWVALUE is non-NIL or NIL. This function is useless in GCL.
Next: Lists, Previous: Sequences and Arrays and Hash Tables, Up: Top [Contents][Index]