MCPcopy Index your code
hub / github.com/yuin/gopher-lua / LTable

Struct LTable

value.go:143–151  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

141}
142
143type LTable struct {
144 Metatable LValue
145
146 array []LValue
147 dict map[LValue]LValue
148 strdict map[string]LValue
149 keys []LValue
150 k2i map[LValue]int
151}
152
153func (tb *LTable) String() string { return fmt.Sprintf("table: %p", tb) }
154func (tb *LTable) Type() LValueType { return LTTable }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected