ImportPackage: Difference between revisions
From Onset Developer Wiki
Created page with "{{Info|Function|Server & Client|1.0}} {{FuncDescription|Creates a table holding all exported functions by another package.}} {{FuncSyntax|ImportPackage(PackageName)}} {{Fun..." |
No edit summary |
||
Line 1: | Line 1: | ||
{{Info|Function|Server & Client|1.0}} | {{Info|Function|Server & Client|1.0}} | ||
{{FuncDescription|Creates a table holding all exported functions by another package.}} | {{FuncDescription|Creates a table holding all exported functions by another package. | ||
''ImportPackage'' should only be called once in a package. The returned table is valid until package unload.}} | |||
{{FuncSyntax|ImportPackage(PackageName)}} | {{FuncSyntax|ImportPackage(PackageName)}} |
Revision as of 19:25, 29 March 2021
Description
Creates a table holding all exported functions by another package.
ImportPackage should only be called once in a package. The returned table is valid until package unload.
Syntax
ImportPackage(PackageName)
Parameters
- PackageName
Name of the package to import. Must be loaded before this one.
Return Value
- Creates a table holding the other packages exported functions. Return nil if PackageName does not exist.
Example
Package Test1
function UsefulFunc(param1, param2)
return param1 + param2
end
AddFunctionExport("UsefulFunc", UsefulFunc)
Package Test2
test = ImportPackage("Test1")
print(test.UsefulFunc(2, 2))
ImportPackage should only be called once in a package. The returned table is valid until package unload.