| 872 | |
| 873 | |
| 874 | LUA_API void lua_rawsetp (lua_State *L, int idx, const void *p) { |
| 875 | TValue k; |
| 876 | setpvalue(&k, cast_voidp(p)); |
| 877 | aux_rawset(L, idx, &k, 1); |
| 878 | } |
| 879 | |
| 880 | |
| 881 | LUA_API void lua_rawseti (lua_State *L, int idx, lua_Integer n) { |
nothing calls this directly
no test coverage detected