A The Application Environment
To create and use a file containing compiled dispatch code, use these steps.
;;; Add an IN-PACKAGE because you need one in ;;; every file you compile. (in-package "CLOS");;; This call expands into the necessary dispatch code. (compile-all-dispatch-code)
compile-all-dispatch-code
. When you build an application, load this file before loading any other file in the application because loading a method or class definition might install dispatch code.compile-all-dispatch-code
in The Common Lisp Object System.
Generated with Harlequin WebMaker