We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The progress on Lua State and Thread related functions and also freestanding utility functions/macros.
lua_atpanic
State::replacePanicFunction
lua_close
OwnedState::close
lua_gc
State::gc
lua_getallocf
State::getAllocator
lua_getextraspace
State::extraspace
lua_newstate
OwnedState::OwnedState
lua_register
lua_setallocf
State::setAllocator
lua_setcstacklimit
lua_setwarnf
lua_version
State::version
lua_warning
luaL_checkversion
State::checkVersion
luaL_newstate
luaL_openlibs
State::openLibs
lua_isyieldable
State::isYieldable
lua_status
State::status
lua_numbertointeger
lua_upvalueindex
lua_typename
The text was updated successfully, but these errors were encountered:
Possseidon
No branches or pull requests
General
The progress on Lua State and Thread related functions and also freestanding utility functions/macros.
State
Core Library
lua_atpanic
used inState::replacePanicFunction
lua_close
used inOwnedState::close
lua_gc
used inState::gc
private helper functionlua_getallocf
used inState::getAllocator
lua_getextraspace
used inState::extraspace
- TODO: typesafetylua_newstate
used inOwnedState::OwnedState
lua_register
lua_setallocf
used inState::setAllocator
lua_setcstacklimit
lua_setwarnf
lua_version
used inState::version
lua_warning
Auxiliary Library
luaL_checkversion
used inState::checkVersion
luaL_newstate
used inOwnedState::OwnedState
luaL_openlibs
used inState::openLibs
Thread
lua_isyieldable
used inState::isYieldable
lua_status
used inState::status
Freestanding
lua_numbertointeger
lua_upvalueindex
used in various places regarding upvalue indiceslua_typename
The text was updated successfully, but these errors were encountered: