#include <sol.hpp>
|
template<typename Key , typename Value > |
void | set (lua_State *L, Key &&key, Value &&value, int tableindex=-3) |
|
§ set()
template<typename T, bool , bool , typename >
template<typename Key , typename Value >
void sol::stack::field_setter< T, bool, bool, typename >::set |
( |
lua_State * |
L, |
|
|
Key && |
key, |
|
|
Value && |
value, |
|
|
int |
tableindex = -3 |
|
) |
| |
|
inline |
11531 push(L, std::forward<Key>(key));
11532 push(L, std::forward<Value>(value));
11533 lua_settable(L, tableindex);
int push(lua_State *L, T &&t, Args &&... args)
Definition: sol.hpp:7770
The documentation for this struct was generated from the following file: