예제 #1
0
파일: State.go 프로젝트: rdlaitila/leaf
// Moves the top element into the given position (and pops it), without
// shifting any element (therefore replacing the value at the given
// position).
func (this *State) Replace(index int) {
	C.lua_replace(this.luastate, C.int(index))
}
예제 #2
0
파일: lua.go 프로젝트: szll/golua
// lua_replace
func (L *State) Replace(index int) {
	C.lua_replace(L.s, C.int(index))
}
예제 #3
0
파일: state.go 프로젝트: halturin/luajit
// Moves the top element into the given position (and pops it), without
// shifting any element (therefore replacing the value at the given
// position).
func (s *State) Replace(index int) {
	C.lua_replace(s.l, C.int(index))
}