예제 #1
0
파일: lua.go 프로젝트: szll/golua
// lua_getmetatable
func (L *State) GetMetaTable(index int) bool {
	return C.lua_getmetatable(L.s, C.int(index)) != 0
}
예제 #2
0
파일: state.go 프로젝트: halturin/luajit
// Pushes onto the stack the metatable associated with name tname in the
// registry.
func (s *State) Getmetatable(index int) {
	C.lua_getmetatable(s.l, C.int(index))
}