Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/SteveKChiu/lua-intf
/ functions
Functions
478 in github.com/SteveKChiu/lua-intf
⨍
Functions
478
◇
Types & classes
173
Method
call
* lua_CFunction to call a class constructor (stored via shared pointer) */
LuaIntf/impl/CppBindClass.h:55
Method
call
* lua_CFunction to call CppObject destructor (for __gc) */
LuaIntf/impl/CppBindClass.h:77
Method
call
* lua_CFunction to get a class data member * * The pointer-to-member is in the first upvalue. * The class userdata object is at the top
LuaIntf/impl/CppBindClass.h:100
Method
call
* lua_CFunction to set a class data member. * * The pointer-to-member is in the first upvalue. * The class userdata object is at the to
LuaIntf/impl/CppBindClass.h:125
Method
call
* lua_CFunction to call a class member function * * The pointer to function object is in the first upvalue. * The class userdata object
LuaIntf/impl/CppBindClass.h:166
Method
call
LuaIntf/impl/CppInvoke.h:64
Method
call
LuaIntf/impl/CppInvoke.h:73
Method
call
LuaIntf/impl/CppInvoke.h:88
Method
call
LuaIntf/impl/CppInvoke.h:103
Method
call
LuaIntf/impl/CppInvoke.h:117
Method
call
LuaIntf/impl/CppInvoke.h:131
Method
call
LuaIntf/impl/CppInvoke.h:166
Method
call
LuaIntf/impl/CppInvoke.h:181
Method
call
LuaIntf/impl/CppInvoke.h:202
Method
call
LuaIntf/impl/CppInvoke.h:211
Method
call
LuaIntf/impl/CppInvoke.h:220
Method
call
LuaIntf/impl/CppInvoke.h:235
Method
call
LuaIntf/impl/CppInvoke.h:250
Method
call
LuaIntf/impl/CppInvoke.h:264
Method
call
LuaIntf/impl/CppInvoke.h:278
Method
call
* lua_CFunction to get a constant * * The constant data is in the first upvalue. */
LuaIntf/impl/CppBindModule.h:34
Method
call
* lua_CFunction to get a variable * * This is used for global variables or class static data members. * * The pointer to the data
LuaIntf/impl/CppBindModule.h:51
Method
call
* lua_CFunction to set a variable. * * This is used for global variables or class static data members. * * The pointer to the data
LuaIntf/impl/CppBindModule.h:76
Method
call
* lua_CFunction to call a function * * The pointer to function object is in the first upvalue. */
LuaIntf/impl/CppBindModule.h:116
Method
callMeta
LuaIntf/LuaState.h:656
Method
callp
LuaIntf/src/CppFunction.cpp:55
Method
cast
LuaIntf/impl/CppObject.h:130
Method
checkAny
LuaIntf/LuaState.h:398
Method
checkInteger
LuaIntf/LuaState.h:419
Method
checkNumber
LuaIntf/LuaState.h:410
Method
checkOption
LuaIntf/LuaState.h:478
Method
checkStack
LuaIntf/LuaState.h:337
Method
checkString
LuaIntf/LuaState.h:451
Method
checkType
LuaIntf/LuaState.h:395
Method
checkUnsigned
LuaIntf/LuaState.h:428
Method
checkUserData
LuaIntf/LuaState.h:469
Method
checkVersion
LuaIntf/LuaState.h:311
Method
close
LuaIntf/LuaState.h:288
Method
compare
LuaIntf/LuaState.h:491
Method
compareTo
LuaIntf/src/LuaRef.cpp:206
Method
concat
LuaIntf/LuaState.h:763
Method
copy
LuaIntf/LuaState.h:334
Method
createFunction
LuaIntf/LuaRef.h:339
Method
createFunctionWith
LuaIntf/LuaRef.h:308
Method
createFunctionWithPtr
* Create new lua_CFunction with context (lightuserdata) as upvalue(1). * * @param L Lua state * @param proc the lua_CFunction * @p
LuaIntf/LuaRef.h:322
Method
createTable
* Create a new, empty table. * * @param L Lua state * @param narr pre-allocate space for this number of array elements * @param nr
LuaIntf/LuaRef.h:373
Method
createTableWithMeta
* Create a new table and set the meta table, this behaves like an object. * * @param L Lua state * @param meta the name of meta table
LuaIntf/LuaRef.h:386
Method
createUserData
* Create new userdata with requested size. * * @param L Lua state * @param userdata_size the size of userdata to allocate * @param
LuaIntf/LuaRef.h:278
Method
createUserDataFrom
LuaIntf/LuaRef.h:294
Method
destructUserData
LuaIntf/LuaRef.h:1215
Method
dispatch
LuaIntf/LuaRef.h:783
Method
dispatchStatic
LuaIntf/LuaRef.h:808
Method
doFile
* Run a Lua script, the path is probably not unicode friendly * * @param path Path to script file to execute * @throw LuaException for
LuaIntf/LuaContext.h:145
Method
doFile
LuaIntf/LuaState.h:693
Method
doString
* Run a string of Lua * * @param code Lua code to execute * @throw LuaException for syntax errors and uncaught runtime errors */
LuaIntf/LuaContext.h:133
Method
doString
LuaIntf/LuaState.h:696
Method
dump
LuaIntf/LuaState.h:700
Method
endClass
* Continue registration in the enclosing module or class. */
LuaIntf/impl/CppBindClass.h:1000
Method
endModule
* Continue CppBindModule registration in the parent. */
LuaIntf/impl/CppBindModule.h:539
Method
error
LuaIntf/LuaState.h:750
Method
error
LuaIntf/src/LuaState.cpp:103
Method
errorConstMismatch
LuaIntf/src/CppBindClass.cpp:264
Method
errorReadOnly
LuaIntf/src/CppBindClass.cpp:258
Method
errorReadOnly
LuaIntf/src/CppBindModule.cpp:115
Function
eval
LuaIntf/LuaState.h:233
Method
eval
LuaIntf/LuaState.h:854
Method
exec
LuaIntf/LuaState.h:850
Method
exec
LuaIntf/src/LuaState.cpp:76
Method
execResult
LuaIntf/LuaState.h:689
Method
extend
LuaIntf/impl/CppBindClass.h:457
Method
fileResult
LuaIntf/LuaState.h:707
Method
fill
LuaIntf/LuaRef.h:1282
Method
fill
LuaIntf/LuaRef.h:1293
Method
findClassID
LuaIntf/impl/CppObject.h:187
Method
forwardCall
LuaIntf/src/CppBindModule.cpp:97
Method
fromPtr
* Create LuaRef from data pointer, the data pointer life time is managed by C++. */
LuaIntf/LuaRef.h:721
Method
fromValue
LuaIntf/LuaRef.h:701
Method
function
LuaIntf/impl/CppBindClass.h:185
Method
function
LuaIntf/impl/CppBindModule.h:134
Method
gc
* Access Lua garbage collection. * Defaults to collecting all garbage. */
LuaIntf/LuaContext.h:189
Method
gc
LuaIntf/LuaState.h:742
Method
gc
LuaIntf/src/CppFunction.cpp:44
Method
gcp
LuaIntf/src/CppFunction.cpp:65
Method
get
LuaIntf/LuaRef.h:1064
Method
get
LuaIntf/LuaRef.h:1330
Method
get
LuaIntf/QtLuaIntf.h:88
Method
get
LuaIntf/QtLuaIntf.h:116
Method
get
LuaIntf/QtLuaIntf.h:139
Method
get
LuaIntf/impl/CppFunction.h:86
Method
get
LuaIntf/impl/CppFunction.h:114
Method
get
LuaIntf/impl/CppFunction.h:144
Method
get
LuaIntf/impl/CppObject.h:142
Method
get
LuaIntf/impl/CppObject.h:532
Method
get
LuaIntf/impl/LuaType.h:86
Method
get
LuaIntf/impl/LuaType.h:107
Method
get
LuaIntf/impl/LuaType.h:146
Method
get
LuaIntf/impl/LuaType.h:190
Method
get
LuaIntf/impl/LuaType.h:232
Method
get
LuaIntf/impl/LuaType.h:274
Method
get
LuaIntf/impl/LuaType.h:295
← previous
next →
101–200 of 478, ranked by callers