Expand description
Lua table — canonical implementation now lives in lua-types::table.
This file is a thin re-export for compatibility with workspace
consumers (lua-lex, lua-vm::trace_impls) that previously
imported lua_vm::table::LuaTable. The interesting code has moved
to crates/lua-types/src/table.rs; see the doc comment there.
Structs§
- LuaTable
- A Lua table: hybrid array + hash map.
- Table
Flags - Bitfield for a
LuaTable: lower bits record absent fast-access metamethods; bit 7 encodes whetheralimitis the real array size. - Table
Node - One node in a table’s hash part.
Enums§
- Table
Slot Ref - Internal slot reference returned by the “get” family of functions.