For the complete documentation index, see llms.txt. This page is also available as Markdown.

BoxModuleReload

Reload all the registered modules in the runtime or a specific module.

Method Signature

BoxModuleReload(module=[string])

Arguments

Argument
Type
Required
Description
Default

module

string

false

The name of the module to reload. If not provided, all modules are reloaded.

Examples

Reload a BoxLang module by name

result = boxModuleReload( "bx-compat-cfml" );
writeOutput( isStruct( result ) );

Result: true

Last updated

Was this helpful?