Function ecs_filter_next
Synopsis
#include <include/flecs.h>
FLECS_API bool ecs_filter_next(ecs_iter_t *iter)
Description
Iterate tables matched by filter. This operation progresses the filter iterator to the next table. The iterator must have been initialized with ecs_filter_iter
. This operation must be invoked at least once before interpreting the contents of the iterator.
- Parameters
it
- The iterator- Returns
- True if more data is available, false if not.
Mentioned in
- Manual / Filters
Source
Line 2172 in include/flecs.h.