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

#include <sol.hpp>

Static Public Member Functions

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

Member Function Documentation

§ push() [1/3]

static int sol::stack::pusher< char * >::push ( lua_State *  L,
const char *  str 
)
inlinestatic
10884  {
10885  pusher<const char*> p{};
10886  (void)p;
10887  return p.push(L, str);
10888  }

§ push() [2/3]

static int sol::stack::pusher< char * >::push ( lua_State *  L,
const char *  strb,
const char *  stre 
)
inlinestatic
10890  {
10891  pusher<const char*> p{};
10892  (void)p;
10893  return p.push(L, strb, stre);
10894  }

§ push() [3/3]

static int sol::stack::pusher< char * >::push ( lua_State *  L,
const char *  str,
std::size_t  len 
)
inlinestatic
10896  {
10897  pusher<const char*> p{};
10898  (void)p;
10899  return p.push(L, str, len);
10900  }

§ push_sized()

static int sol::stack::pusher< char * >::push_sized ( lua_State *  L,
const char *  str,
std::size_t  len 
)
inlinestatic
10878  {
10879  pusher<const char*> p{};
10880  (void)p;
10881  return p.push_sized(L, str, len);
10882  }

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