Actions |
XLua supports tables as return values to Lua functions, which will be interpreted as native Lua tables. These two events control how return values are grouped into tables.
Begin Table
Starts a new table return value at the current return value position. Anyreturn values pushed into the queue after will be part of the table instead. These actions can be nested, so a second call to Begin Table will start a new table within the parent table, and begin consuming any new return values.
Parameters
None.
End Table
Terminates a currently open table return value. Any return values pushed after will be part of the normal return value queue, or part of the parent table if a nested table was closed.
Parameters
None.
Copyright 2010 Justin Aquadro