- autoload_all is det
- autoload_all(+Options) is det
- Force all necessary autoloading to be done now. This sets the
Prolog flag
autoload
to false
, resolving explicit autoloading
and then finds all undefined references to autoloadable predicates
and load the library files that define these predicates.
Options:
- verbose(+Boolean)
- If
true
(default false
), report on the files loaded.
- undefined(+Action)
- Action defines what happens if the analysis finds a
definitely undefined predicate. One of
ignore
or
error
. Default is ignore
.