Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/EmmyLua/EmmyLuaDebugger
/ luaH_size
Function
luaH_size
third-party/lua-5.5.0/src/ltable.c:811–816 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
809
810
811
lu_mem luaH_size (Table *t) {
812
lu_mem sz = cast(lu_mem, sizeof(Table)) + concretesize(t->asize);
813
if (!isdummy(t))
814
sz += sizehash(t);
815
return sz;
816
}
817
818
819
/*
Callers
1
objsize
Function · 0.85
Calls
2
concretesize
Function · 0.85
sizehash
Function · 0.85
Tested by
no test coverage detected