state = ismodule(module_short_name)
state = ismodule(module_short_name, 'isprotected')
| Parameter | Description |
|---|---|
| module_short_name | a string: short module's name to test. |
| 'isprotected' | check module isprotected (ie. internal module). |
| Parameter | Description |
|---|---|
| state | a logical. |
ismodule returns true if module is loaded otherwise false.
ismodule('core')
ismodule('mymodule')
| Version | Description |
|---|---|
| 1.0.0 | initial version |
| 1.11.0 | 'isprotected' second argument. |