| 6874 | } |
| 6875 | |
| 6876 | inline type type_of(lua_State* L, int index) { |
| 6877 | return static_cast<type>(lua_type(L, index)); |
| 6878 | } |
| 6879 | |
| 6880 | inline std::string type_name(lua_State* L, type t) { |
| 6881 | return lua_typename(L, static_cast<int>(t)); |
no test coverage detected