luad.c.lauxlib

Undocumented in source.

Members

Aliases

luaI_openlib
alias luaI_openlib = luaL_openlib
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_putchar
alias luaL_putchar = luaL_addchar
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_reg
alias luaL_reg = luaL_Reg
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Functions

luaL_addchar
void luaL_addchar(luaL_Buffer* B, char c)
Undocumented in source. Be warned that the author may not have intended to support it.
luaL_addlstring
void luaL_addlstring(luaL_Buffer* B, 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.
luaL_addsize
void luaL_addsize(luaL_Buffer* B, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
luaL_addstring
void luaL_addstring(luaL_Buffer* B, char* s)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_addvalue
void luaL_addvalue(luaL_Buffer* B)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_argcheck
void luaL_argcheck(lua_State* L, int cond, int numarg, const(char)* extramsg)
Undocumented in source. Be warned that the author may not have intended to support it.
luaL_argerror
int luaL_argerror(lua_State* L, int numarg, const(char)* extramsg)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_buffinit
void luaL_buffinit(lua_State* L, luaL_Buffer* B)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_callmeta
int luaL_callmeta(lua_State* L, int obj, const(char)* e)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_checkany
void luaL_checkany(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.
luaL_checkint
int luaL_checkint(lua_State* L, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
luaL_checkinteger
lua_Integer luaL_checkinteger(lua_State* L, int numArg)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_checklong
long luaL_checklong(lua_State* L, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
luaL_checklstring
const(char)* luaL_checklstring(lua_State* L, int numArg, 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.
luaL_checknumber
lua_Number luaL_checknumber(lua_State* L, int numArg)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_checkoption
int luaL_checkoption(lua_State* L, int narg, const(char)* def, const(char*)* lst)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_checkstack
void luaL_checkstack(lua_State* L, int sz, const(char)* msg)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_checkstring
const(char)* luaL_checkstring(lua_State* L, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
luaL_checktype
void luaL_checktype(lua_State* L, int narg, int t)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_checkudata
void* luaL_checkudata(lua_State* L, int ud, const(char)* tname)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_dofile
int luaL_dofile(lua_State* L, const(char)* fn)
Undocumented in source. Be warned that the author may not have intended to support it.
luaL_dostring
int luaL_dostring(lua_State* L, const(char)* s)
Undocumented in source. Be warned that the author may not have intended to support it.
luaL_error
int luaL_error(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.
luaL_findtable
const(char)* luaL_findtable(lua_State* L, int idx, const(char)* fname, int szhint)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_getmetafield
int luaL_getmetafield(lua_State* L, int obj, const(char)* e)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_getmetatable
void luaL_getmetatable(lua_State* L, const(char)* s)
Undocumented in source. Be warned that the author may not have intended to support it.
luaL_getn
int luaL_getn(lua_State* L, int i)
Undocumented in source. Be warned that the author may not have intended to support it.
luaL_gsub
const(char)* luaL_gsub(lua_State* L, const(char)* s, const(char)* p, const(char)* r)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_loadbuffer
int luaL_loadbuffer(lua_State* L, const(char)* buff, size_t sz, const(char)* name)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_loadfile
int luaL_loadfile(lua_State* L, const(char)* filename)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_loadstring
int luaL_loadstring(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.
luaL_newmetatable
int luaL_newmetatable(lua_State* L, const(char)* tname)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_newstate
lua_State* luaL_newstate()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_openlib
void luaL_openlib(lua_State* L, const(char)* libname, luaL_Reg* l, int nup)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_opt
bool luaL_opt(lua_State* L, int function(lua_State*, int) f, int n, int d)
Undocumented in source. Be warned that the author may not have intended to support it.
luaL_optint
int luaL_optint(lua_State* L, int n, int d)
Undocumented in source. Be warned that the author may not have intended to support it.
luaL_optinteger
lua_Integer luaL_optinteger(lua_State* L, int nArg, lua_Integer def)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_optlong
long luaL_optlong(lua_State* L, int n, int d)
Undocumented in source. Be warned that the author may not have intended to support it.
luaL_optlstring
const(char)* luaL_optlstring(lua_State* L, int numArg, const(char)* def, 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.
luaL_optnumber
lua_Number luaL_optnumber(lua_State* L, int nArg, lua_Number def)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_optstring
const(char)* luaL_optstring(lua_State* L, int n, const(char)* d)
Undocumented in source. Be warned that the author may not have intended to support it.
luaL_prepbuffer
char* luaL_prepbuffer(luaL_Buffer* B)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_pushresult
void luaL_pushresult(luaL_Buffer* B)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_ref
int luaL_ref(lua_State* L, int t)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_register
void luaL_register(lua_State* L, const(char)* libname, luaL_Reg* l)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_setn
void luaL_setn(lua_State* L, int i, int j)
Undocumented in source. Be warned that the author may not have intended to support it.
luaL_typename
const(char)* luaL_typename(lua_State* L, int i)
Undocumented in source. Be warned that the author may not have intended to support it.
luaL_typerror
int luaL_typerror(lua_State* L, int narg, const(char)* tname)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_unref
void luaL_unref(lua_State* L, int t, int _ref)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
luaL_where
void luaL_where(lua_State* L, int lvl)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_getref
void lua_getref(lua_State* L, int _ref)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_ref
void lua_ref(lua_State* L, int lock)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_unref
void lua_unref(lua_State* L, int _ref)
Undocumented in source. Be warned that the author may not have intended to support it.

Structs

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

Variables

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

Meta