Tao.Lua SDK Documentation

Lua.lua_rawseti Method 

Does the equivalent of t[n] = v, where t is the value at the given valid index index and v is the value at the top of the stack,

[Visual Basic]
Public Shared Sub lua_rawseti( _
   ByVal L As IntPtr, _
   ByVal idx As Integer, _
   ByVal n As Integer _
)
[C#]
public static void lua_rawseti(
   IntPtr L,
   int idx,
   int n
);

Parameters

L
idx
n

Remarks

This function pops the value from the stack. The assignment is raw; that is, it does not invoke metamethods.

See Also

Lua Class | Tao.Lua Namespace