MCPcopy Index your code
hub / github.com/Shopify/go-lua / IsTable

Method IsTable

lua.go:1496–1496  ·  view source on GitHub ↗

IsTable verifies that the value at index is a table. http://www.lua.org/manual/5.2/manual.html#lua_istable

(index int)

Source from the content-addressed store, hash-verified

1494//
1495// http://www.lua.org/manual/5.2/manual.html#lua_istable
1496func (l *State) IsTable(index int) bool { return l.TypeOf(index) == TypeTable }
1497
1498// IsLightUserData verifies that the value at index is a light userdata.
1499//

Callers 3

findLoaderFunction · 0.80
findFieldFunction · 0.80
SubTableFunction · 0.80

Calls 1

TypeOfMethod · 0.95

Tested by

no test coverage detected