| 418 | |
| 419 | |
| 420 | LUA_API lua_Unsigned lua_rawlen (lua_State *L, int idx) { |
| 421 | const TValue *o = index2value(L, idx); |
| 422 | switch (ttypetag(o)) { |
| 423 | case LUA_VSHRSTR: return tsvalue(o)->shrlen; |
| 424 | case LUA_VLNGSTR: return tsvalue(o)->u.lnglen; |
| 425 | case LUA_VUSERDATA: return uvalue(o)->len; |
| 426 | case LUA_VTABLE: return luaH_getn(hvalue(o)); |
| 427 | default: return 0; |
| 428 | } |
| 429 | } |
| 430 | |
| 431 | |
| 432 | LUA_API lua_CFunction lua_tocfunction (lua_State *L, int idx) { |
nothing calls this directly
no test coverage detected