(= function-documentation "
Args: (number &rest more-numbers)
Returns T if all args are numerically equal; NIL otherwise.")
(least-positive-long-float variable-documentation "
The smallest positive long-float.")
(logeqv function-documentation "
Args: (&rest integers)
Returns the bit-wise EQUIVALENCE of the args.")
(nil type-documentation "
The type NIL is a subtype of every type.  No object belongs to this type.")
(nil variable-documentation "
The value of NIL is NIL.")
(nsubst-if-not function-documentation "
Args: (new test tree &key (key #'identity))
Destructive SUBST-IF-NOT.  TREE may be destroyed.")
(nsubstitute-if-not function-documentation "
Args: (new test sequence
       &key (key #'identity) (start 0) (end (length sequence))
            (count most-positive-fixnum) (from-end nil))
Destructive SUBSTITUTE-IF-NOT.  SEQUENCE may be destroyed.")
(prog function-documentation "
Syntax: (prog ({var | (var [init])}*) {decl}* {tag | statement}*)
Establishes a NIL block, binds each VAR to the value of INIT (which defaults
to NIL) in parallel, and executes STATEMENTs.  Returns NIL.")
(rassoc-if-not function-documentation "
Args: (test alist)
Returns the first pair in ALIST whose cdr does not satisfy TEST.  Returns NIL
if no such pair exists.")
(string-left-trim function-documentation "
Args: (char-bag string)
Returns a copy of STRING with the specified characters removed from the left
end.  CHAR-SPEC must be a sequence of characters.")
(argv function-documentation "
Args: (n)
KCL specific.
Returns the N-th argument given in the command line that invoked KCL.")
(get-hole-size function-documentation "
Args: ()
KCL specific.
Returns as a fixnum the size of the memory hole (in pages).")
