module-directoriesModule Manager Facilitypatchmodule-loaded-pGoTo Top

module-loaded-p   module-name => boolean[Function]

Purpose
Determine if a module has been fully loaded into Common Lisp.

Package   :module-manager

Module   :module-manager

Arguments and values

module-name     A keyword symbol naming a module
boolean     A generalized boolean

Returns
True if the module has been fully loaded; nil otherwise.

Errors
Module module-name has not been defined.

See also
    define-module
    load-module

Example
Check if the Agenda Shell module has been loaded:


  > (module-loaded-p :agenda-shell)
  t
  >

The GBBopen Project


module-directoriesModule Manager Facilitypatchmodule-loaded-pGoTo Top