std-module-defined-p,std-module-pathname | ![]() |
(std-module-defined-p <module-name>) => T/nil
(std-module-pathname <module-name>) => pathname or nil
std-module-defined-p returns T or nil if the module is defined (= loaded) or not.
std-module-pathname returns the filename of the module which will be loaded or is already loaded or nil if it is not found.
module-name: string or symbol. Usually the filename of the lisp file in which the module is defined. Just the name without absolute path or extension is needed. Usually case insensitive, but OS dependant.
T or nil.
String or nil.
None.
(std-require 'STDINIT)
Defined in STDMODUL