OpenMiner  0.0.1a
Voxel game engine
Public Member Functions | List of all members
sol::stack::field_setter< T, bool, bool, typename > Struct Template Reference

#include <sol.hpp>

Public Member Functions

template<typename Key , typename Value >
void set (lua_State *L, Key &&key, Value &&value, int tableindex=-3)
 

Member Function Documentation

§ 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
11530  {
11531  push(L, std::forward<Key>(key));
11532  push(L, std::forward<Value>(value));
11533  lua_settable(L, tableindex);
11534  }
int push(lua_State *L, T &&t, Args &&... args)
Definition: sol.hpp:7770

The documentation for this struct was generated from the following file: