** Check whether a key is in the array part of a table and return its ** index there, or zero. */
| 331 | ** index there, or zero. |
| 332 | */ |
| 333 | static unsigned keyinarray (Table *t, const TValue *key) { |
| 334 | return (ttisinteger(key)) ? ikeyinarray(t, ivalue(key)) : 0; |
| 335 | } |
| 336 | |
| 337 | |
| 338 | /* |
no outgoing calls
no test coverage detected