7 This converter policy will pass through the ``lua_State*`` unmodified.
8 This can be useful for example when binding functions that need to
9 return a ``luabind::object``. The parameter will be removed from the
10 function signature, decreasing the function arity by one.
17 #include <luabind/raw_policy.hpp>
29 ============= ===============================================================
31 ============= ===============================================================
32 ``index`` The index of the lua_State* parameter.
33 ============= ===============================================================
40 void greet(lua_State* L)
42 lua_pushstring(L, "hello");
49 def("greet", &greet, **raw(_1)**)