adj. (of a type)
having a finite number of elements.
The type specifier (integer 0 5) denotes a finite type,
but the type specifiers integer and (integer 0) do not.
n. 1. a sequence of characters in a format string
which is introduced by a tilde, and which is specially
interpreted by code which processes format strings
to mean that some special operation should be performed, possibly
involving data supplied by the format arguments that
accompanied the format string. See the functionformat.
In "~D base 10 = ~8R", the character
sequences `~D' and `~8R' are format directives.
2. the conceptual category of all format directives1
which use the same dispatch character.
Both "~3d" and "~3,'0D" are valid uses of the
`~D' format directive.
n. a string which can contain both ordinary text and format directives,
and which is used in conjunction with format arguments to describe how
text output should be formatted by certain functions, such as format.
n. a form that is a list and that has a first element
which is the name of a function to be called on
arguments which are the result of evaluating subsequent
elements of the function form.
n.implementation-dependent compilation beyond minimal compilation.
Further compilation is permitted to take place at run time.
Block compilation and generation of machine-specific instructions
are examples of further compilation.