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

#include <sol.hpp>

Static Public Member Functions

static int push (lua_State *L, const char16_t *str)
 
static int push (lua_State *L, const char16_t *strb, const char16_t *stre)
 
static int push (lua_State *L, const char16_t *str, std::size_t len)
 

Member Function Documentation

§ push() [1/3]

static int sol::stack::pusher< char16_t * >::push ( lua_State *  L,
const char16_t *  str 
)
inlinestatic
11085  {
11086  pusher<const char16_t*> p{};
11087  (void)p;
11088  return p.push(L, str);
11089  }

§ push() [2/3]

static int sol::stack::pusher< char16_t * >::push ( lua_State *  L,
const char16_t *  strb,
const char16_t *  stre 
)
inlinestatic
11091  {
11092  pusher<const char16_t*> p{};
11093  (void)p;
11094  return p.push(L, strb, stre);
11095  }

§ push() [3/3]

static int sol::stack::pusher< char16_t * >::push ( lua_State *  L,
const char16_t *  str,
std::size_t  len 
)
inlinestatic
11097  {
11098  pusher<const char16_t*> p{};
11099  (void)p;
11100  return p.push(L, str, len);
11101  }

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