6 ``raw()`` has been deprecated. ``lua_State*`` parameters are
7 automatically handled by luabind.
12 This converter policy will pass through the ``lua_State*`` unmodified.
13 This can be useful for example when binding functions that need to
14 return a ``luabind::object``. The parameter will be removed from the
15 function signature, decreasing the function arity by one.
22 #include <luabind/raw_policy.hpp>
34 ============= ===============================================================
36 ============= ===============================================================
37 ``index`` The index of the lua_State* parameter.
38 ============= ===============================================================
45 void greet(lua_State* L)
47 lua_pushstring(L, "hello");
54 def("greet", &greet, **raw(_1)**)