Tao.Lua SDK Documentation

Lua.luaL_addvalue Method 

Adds the value at the top of the stack to the buffer B (see luaL_Buffer). Pops the value.

[Visual Basic]
Public Shared Sub luaL_addvalue( _
   ByRef B As luaL_Buffer _
)
[C#]
public static void luaL_addvalue(
   ref luaL_Buffer B
);

Parameters

B

Remarks

This is the only function on string buffers that can (and must) be called with an extra element on the stack, which is the value to be added to the buffer.

See Also

Lua Class | Tao.Lua Namespace