pub unsafe extern "C" fn ecs_query_skip(it: *mut ecs_iter_t)Expand description
Skip a table while iterating. This operation lets the query iterator know that a table was skipped while iterating. A skipped table will not reset its changed state, and the query will not update the dirty flags of the table for its out columns.
Only valid iterators must be provided (next has to be called at least once & return true) and the iterator must be a query iterator.
@param it The iterator result to skip.