(alphanumericp function-documentation "
Args: (char)
Returns T if CHAR is either numeric or alphabetic; NIL otherwise.")
(array-rank-limit variable-documentation "
The upper bound of the rank of an array, currently 7.")
(ceiling function-documentation "
Args: (number &optional (divisor 1))
Returns the smallest integer not less than NUMBER/DIVISOR.  Returns the value
of (- NUMBER (* first-value DIVISOR)) as the second value.")
(most-positive-double-float variable-documentation "
Same as MOST-POSITIVE-LONG-FLOAT.")
(namestring function-documentation "
Args: (filespec)
Returns as a string all slots of the pathname specified by FILESPEC.  FILESPEC
may be a symbol, a string, a pathname, or a file stream.")
(package-name function-documentation "
Args: (package)
Returns the name of PACKAGE as a string.")
(position-if function-documentation "
Args: (test sequence
       &key (key #'identity) (start 0) (end (length sequence)) (from-end nil))
Returns the index to the first element in SEQUENCE that satisfies TEST.
Returns NIL if no such element exists.")
(string<= function-documentation "
Args: (string1 string2
       &key (start1 0) (end1 (length string1))
            (start2 0) (end2 (length string2)))
If STRING1 comes before STRING2 in lexicographic order or if the strings are
character-wise CHAR=, then returns the number of characters in the longest
common prefix of the strings.  Otherwise, returns NIL.")
(with-open-file function-documentation "
Syntax: (with-open-file (var filespec-form {options}*) {decl}* {form}*)
Opens the specified file using OPTIONs, and evaluates FORMs with VAR bound to
a stream to/from the file.  The file is automatically closed on exit.  See
OPEN for the options.")
