コード例 #1
0
ファイル: State.go プロジェクト: rdlaitila/leaf
// Pops a table from the stack and sets it as the new metatable for the
// value at the given valid index.
func (this *State) Setmetatable(index int) int {
	return int(C.lua_setmetatable(this.luastate, C.int(index)))
}
コード例 #2
0
ファイル: lua.go プロジェクト: szll/golua
// lua_setmetatable
func (L *State) SetMetaTable(index int) {
	C.lua_setmetatable(L.s, C.int(index))
}
コード例 #3
0
ファイル: state.go プロジェクト: halturin/luajit
// Pops a table from the stack and sets it as the new metatable for the
// value at the given valid index.
func (s *State) Setmetatable(index int) int {
	return int(C.lua_setmetatable(s.l, C.int(index)))
}