package.loaded
Table of loaded packages
Prototype
package.loaded
Description
A table of the packages that are already loaded. Built-in packages (eg. table, string) are also in this table.
table.foreach (package.loaded, print)
-->
string table: 00301370
package table: 00302C70
_G table: 00300200
os table: 003034E0
table table: 00302560
math table: 00304B00
coroutine table: 00301040
debug table: 00304340
io table: 00303D60
Lua functions
- package.config - Package configuration string
- package.cpath - Search path used for loading DLLs using the "require" function
- package.loaders - Table of package loaders
- package.loadlib - Loads a dynamic link library (DLL)
- package.path - Search path used for loading Lua code using the "require" function
- package.preload - A table of special function loaders
- package.seeall - Sets a metatable for the module so it can see global variables
Topics
- Lua LPEG library
- Lua PCRE regular expression functions
- Lua base functions
- Lua bc (big number) functions
- Lua bit manipulation functions
- Lua coroutine functions
- Lua debug functions
- Lua io functions
- Lua math functions
- Lua os functions
- Lua package functions
- Lua script extensions
- Lua string functions
- Lua syntax
- Lua table functions
- Lua utilities
- Scripting callbacks - plugins
- Scripting