| Allegro CL version 6.2 Unrevised from 6.1 |
Arguments: func
Returns a fully loaded function corresponding to func, which must be a function object (not a symbol). If the function object is already fully loaded and a garbage collection has updated pointers, the function object is simply returned. If the function object is a stub (that is, it was libfasl loaded and no action to force complete loading has occurred), the full definition (i.e. all the call-time info) is loaded and then the complete function object is returned.
As we said above, func must be a function object, not a symbol. Thus, to get
the fully loaded version of the function named by the symbol foo
, evaluate
the following form:
(excl:resident-function #'foo)
Several actions besides calling resident-function will cause a stub function to be fully loaded. These actions are:
See Libfasl loading in loading.htm for more information on libfasl loading.
Copyright (c) 1998-2002, Franz Inc. Oakland, CA., USA. All rights reserved.
Documentation for Allegro CL version 6.2. This page was not revised from the 6.1 page.
Created 2002.2.26.
| Allegro CL version 6.2 Unrevised from 6.1 |