luad.c.lua

Undocumented in source.

Members

Aliases

lua_Alloc
alias lua_Alloc = void* function(void* ud, void* ptr, size_t osize, size_t nsize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_CFunction
alias lua_CFunction = int function(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_Chunkreader
alias lua_Chunkreader = lua_Reader
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_Chunkwriter
alias lua_Chunkwriter = lua_Writer
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_Hook
alias lua_Hook = void function(lua_State* L, lua_Debug* ar)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_Integer
alias lua_Integer = ptrdiff_t
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_Number
alias lua_Number = double
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_Reader
alias lua_Reader = char* function(lua_State* L, void* ud, size_t* sz)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_Writer
alias lua_Writer = int function(lua_State* L, const void* p, size_t sz, void* ud)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_open
alias lua_open = luaL_newstate
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_strlen
alias lua_strlen = lua_objlen
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Functions

lua_atpanic
lua_CFunction lua_atpanic(lua_State* L, lua_CFunction panicf)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_call
void lua_call(lua_State* L, int nargs, int nresults)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_checkstack
int lua_checkstack(lua_State* L, int sz)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_close
void lua_close(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_concat
void lua_concat(lua_State* L, int n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_cpcall
int lua_cpcall(lua_State* L, lua_CFunction func, void* ud)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_createtable
void lua_createtable(lua_State* L, int narr, int nrec)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_dump
int lua_dump(lua_State* L, lua_Writer writer, void* data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_equal
bool lua_equal(lua_State* L, int idx1, int idx2)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_error
int lua_error(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_gc
int lua_gc(lua_State* L, int what, int data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_getallocf
lua_Alloc lua_getallocf(lua_State* L, void** ud)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_getfenv
void lua_getfenv(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_getfield
void lua_getfield(lua_State* L, int idx, const(char)* k)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_getgccount
int lua_getgccount(lua_State* L)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_getglobal
void lua_getglobal(lua_State* L, const(char)* s)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_gethook
lua_Hook lua_gethook(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_gethookcount
int lua_gethookcount(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_gethookmask
int lua_gethookmask(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_getinfo
int lua_getinfo(lua_State* L, const(char)* what, lua_Debug* ar)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_getlocal
const(char)* lua_getlocal(lua_State* L, lua_Debug* ar, int n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_getmetatable
int lua_getmetatable(lua_State* L, int objindex)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_getregistry
void lua_getregistry(lua_State* L)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_getstack
int lua_getstack(lua_State* L, int level, lua_Debug* ar)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_gettable
void lua_gettable(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_gettop
int lua_gettop(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_getupvalue
const(char)* lua_getupvalue(lua_State* L, int funcindex, int n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_insert
void lua_insert(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_isboolean
bool lua_isboolean(lua_State* L, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_iscfunction
int lua_iscfunction(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_isfunction
bool lua_isfunction(lua_State* L, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_islightuserdata
bool lua_islightuserdata(lua_State* L, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_isnil
bool lua_isnil(lua_State* L, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_isnone
bool lua_isnone(lua_State* L, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_isnoneornil
bool lua_isnoneornil(lua_State* L, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_isnumber
int lua_isnumber(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_isstring
int lua_isstring(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_istable
bool lua_istable(lua_State* L, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_isthread
bool lua_isthread(lua_State* L, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_isuserdata
int lua_isuserdata(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_lessthan
bool lua_lessthan(lua_State* L, int idx1, int idx2)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_load
int lua_load(lua_State* L, lua_Reader reader, void* dt, const(char)* chunkname)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_newstate
lua_State* lua_newstate(lua_Alloc f, void* ud)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_newtable
void lua_newtable(lua_State* L)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_newthread
lua_State* lua_newthread(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_newuserdata
void* lua_newuserdata(lua_State* L, size_t sz)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_next
int lua_next(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_objlen
size_t lua_objlen(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pcall
int lua_pcall(lua_State* L, int nargs, int nresults, int errfunc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pop
void lua_pop(lua_State* L, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_pushboolean
void lua_pushboolean(lua_State* L, int b)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pushcclosure
void lua_pushcclosure(lua_State* L, lua_CFunction fn, int n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pushcfunction
void lua_pushcfunction(lua_State* L, lua_CFunction f)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_pushfstring
const(char)* lua_pushfstring(lua_State* L, const(char)* fmt, ...)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pushinteger
void lua_pushinteger(lua_State* L, lua_Integer n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pushlightuserdata
void lua_pushlightuserdata(lua_State* L, void* p)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pushliteral
void lua_pushliteral(lua_State* L, string s)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_pushlstring
void lua_pushlstring(lua_State* L, const(char)* s, size_t l)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pushnil
void lua_pushnil(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pushnumber
void lua_pushnumber(lua_State* L, lua_Number n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pushstring
void lua_pushstring(lua_State* L, const(char)* s)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pushthread
int lua_pushthread(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pushvalue
void lua_pushvalue(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pushvfstring
const(char)* lua_pushvfstring(lua_State* L, char* fmt, va_list argp)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_rawequal
bool lua_rawequal(lua_State* L, int idx1, int idx2)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_rawget
void lua_rawget(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_rawgeti
void lua_rawgeti(lua_State* L, int idx, int n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_rawset
void lua_rawset(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_rawseti
void lua_rawseti(lua_State* L, int idx, int n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_register
void lua_register(lua_State* L, const(char)* n, lua_CFunction f)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_remove
void lua_remove(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_replace
void lua_replace(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_resume
int lua_resume(lua_State* L, int narg)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_setallocf
void lua_setallocf(lua_State* L, lua_Alloc f, void* ud)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_setfenv
int lua_setfenv(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_setfield
void lua_setfield(lua_State* L, int idx, const(char)* k)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_setglobal
void lua_setglobal(lua_State* L, const(char)* s)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_sethook
int lua_sethook(lua_State* L, lua_Hook func, int mask, int count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_setlocal
const(char)* lua_setlocal(lua_State* L, lua_Debug* ar, int n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_setmetatable
int lua_setmetatable(lua_State* L, int objindex)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_settable
void lua_settable(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_settop
void lua_settop(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_setupvalue
const(char)* lua_setupvalue(lua_State* L, int funcindex, int n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_status
int lua_status(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_toboolean
bool lua_toboolean(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_tocfunction
lua_CFunction lua_tocfunction(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_tointeger
lua_Integer lua_tointeger(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_tolstring
const(char)* lua_tolstring(lua_State* L, int idx, size_t* len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_tonumber
lua_Number lua_tonumber(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_topointer
void* lua_topointer(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_tostring
const(char)* lua_tostring(lua_State* L, int i)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_tothread
lua_State* lua_tothread(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_touserdata
void* lua_touserdata(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_type
int lua_type(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_typename
char* lua_typename(lua_State* L, int tp)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_upvalueindex
int lua_upvalueindex(int i)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_xmove
void lua_xmove(lua_State* from, lua_State* to, int n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_yield
int lua_yield(lua_State* L, int nresults)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Manifest constants

LUA_VERSION_NUM
enum LUA_VERSION_NUM;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Structs

lua_Debug
struct lua_Debug
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_State
struct lua_State
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Variables

LUA_AUTHORS
string LUA_AUTHORS;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_COPYRIGHT
string LUA_COPYRIGHT;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_ENVIRONINDEX
auto LUA_ENVIRONINDEX;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_ERRERR
auto LUA_ERRERR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_ERRMEM
auto LUA_ERRMEM;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_ERRRUN
auto LUA_ERRRUN;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_ERRSYNTAX
auto LUA_ERRSYNTAX;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_GCCOLLECT
auto LUA_GCCOLLECT;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_GCCOUNT
auto LUA_GCCOUNT;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_GCCOUNTB
auto LUA_GCCOUNTB;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_GCRESTART
auto LUA_GCRESTART;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_GCSETPAUSE
auto LUA_GCSETPAUSE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_GCSETSTEPMUL
auto LUA_GCSETSTEPMUL;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_GCSTEP
auto LUA_GCSTEP;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_GCSTOP
auto LUA_GCSTOP;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_GLOBALSINDEX
auto LUA_GLOBALSINDEX;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_HOOKCALL
auto LUA_HOOKCALL;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_HOOKCOUNT
auto LUA_HOOKCOUNT;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_HOOKLINE
auto LUA_HOOKLINE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_HOOKRET
auto LUA_HOOKRET;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_HOOKTAILRET
auto LUA_HOOKTAILRET;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_MASKCALL
auto LUA_MASKCALL;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_MASKCOUNT
auto LUA_MASKCOUNT;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_MASKLINE
auto LUA_MASKLINE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_MASKRET
auto LUA_MASKRET;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_MINSTACK
auto LUA_MINSTACK;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_MULTRET
auto LUA_MULTRET;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_REGISTRYINDEX
auto LUA_REGISTRYINDEX;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_RELEASE
string LUA_RELEASE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_SIGNATURE
char[] LUA_SIGNATURE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_TBOOLEAN
auto LUA_TBOOLEAN;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_TFUNCTION
auto LUA_TFUNCTION;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_TLIGHTUSERDATA
auto LUA_TLIGHTUSERDATA;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_TNIL
auto LUA_TNIL;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_TNONE
auto LUA_TNONE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_TNUMBER
auto LUA_TNUMBER;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_TSTRING
auto LUA_TSTRING;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_TTABLE
auto LUA_TTABLE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_TTHREAD
auto LUA_TTHREAD;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_TUSERDATA
auto LUA_TUSERDATA;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_VERSION
string LUA_VERSION;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_YIELD
auto LUA_YIELD;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Meta