Skip to main content

Module table

Module table 

Source
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.
TableFlags
Bitfield for a LuaTable: lower bits record absent fast-access metamethods; bit 7 encodes whether alimit is the real array size.
TableNode
One node in a table’s hash part.

Enums§

TableSlotRef
Internal slot reference returned by the “get” family of functions.