| Interface | Description |
|---|---|
| LoaderProvider |
A provider of library loaders.
|
| Class | Description |
|---|---|
| AbstractLibFunction |
An abstract function that takes an arbitrary number of arguments passed wrapped
in an
ArgumentIterator object. |
| ArgumentIterator |
An iterator over arguments passed to a function.
|
| BasicLib |
The basic library provides core functions to Lua.
|
| CoroutineLib |
This library comprises the operations to manipulate coroutines, which come inside the table
coroutine. |
| DebugLib |
This library provides the functionality of the debug interface (see ยง4.9 of the Lua
Reference Manual) to Lua programs.
|
| IoFile |
A file handle used by the
I/O library. |
| IoLib |
The I/O library provides two different styles for file manipulation.
|
| MathLib |
This library provides basic mathematical functions.
|
| ModuleLib |
The package library provides basic facilities for loading modules in Lua.
|
| NameMetamethodValueTypeNamer |
A value type namer that looks up type names in object metatables, and distinguishes
light userdata from full userdata.
|
| OsLib |
This library is implemented through table
os. |
| SimpleLoaderFunction | |
| StandardLibrary |
The configuration of the Lua standard library.
|
| StringLib |
This library provides generic functions for string manipulation, such as finding
and extracting substrings, and pattern matching.
|
| StringPattern |
Patterns in Lua are described by regular strings, which are interpreted as patterns
by the pattern-matching functions
{@code string.find},
{@code string.gmatch},
{@code string.gsub},
and {@code string.match}. |
| StringPattern.Match | |
| TableLib |
This library provides generic functions for table manipulation.
|
| Utf8Lib |
This library provides basic support for UTF-8 encoding.
|
| Enum | Description |
|---|---|
| IoFile.Whence |
| Exception | Description |
|---|---|
| AssertionFailedException | |
| BadArgumentException |
Thrown to indicate that an illegal argument was passed to a library function.
|
| UnexpectedArgumentException |
Copyright © 2016–2017. All rights reserved.