OpenMiner  0.0.1a
Voxel game engine
Static Public Member Functions | List of all members
sol::stack::pusher< unsafe_function_result > Struct Template Reference

#include <sol.hpp>

Static Public Member Functions

static int push (lua_State *L, const unsafe_function_result &fr)
 

Member Function Documentation

§ push()

static int sol::stack::pusher< unsafe_function_result >::push ( lua_State *  L,
const unsafe_function_result fr 
)
inlinestatic
12533  {
12534  int p = 0;
12535  for (int i = 0; i < fr.return_count(); ++i) {
12536  lua_pushvalue(L, i + fr.stack_index());
12537  ++p;
12538  }
12539  return p;
12540  }

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