|
SimpleFastOpenAtomicVisualiser
|
Interop for a string in Lua. More...
#include <LuaString.h>
Public Member Functions | |
| LuaString () | |
| Construct the string "". | |
| void | read (lua_State *lua, int index) |
| Read the string from stack index index. | |
| bool | readField (lua_State *lua, const char *name) |
| Read the string from a table field. | |
| bool | readGlobal (lua_State *lua, const char *name) |
| Read the string from a global table field. | |
| bool | operator== (const std::string &rhs) |
| operator std::string () | |
Public Attributes | |
| std::string | characters |
Interop for a string in Lua.
|
inline |
Construct the string "".
|
inline |
Read the string from stack index index.
| lua | the Lua context. |
| index | the stack index. |
Read the string from a table field.
| lua | the Lua context. |
| name | the field name. |
Read the string from a global table field.
| lua | the Lua context. |
| name | the field name. |
| std::string LuaString::characters |