------------------------------------------------------------------------------
| 1208 | |
| 1209 | //------------------------------------------------------------------------------ |
| 1210 | bool ofxLua::checkType(int stackIndex, int type) { |
| 1211 | return lua_type(L, stackIndex) == type; |
| 1212 | } |
| 1213 | |
| 1214 | //------------------------------------------------------------------------------ |
| 1215 | // from http://stackoverflow.com/questions/6137684/iterate-through-lua-table |
nothing calls this directly
no test coverage detected