ecs_table_has_flags

Function ecs_table_has_flags 

Source
pub unsafe extern "C" fn ecs_table_has_flags(
    table: *mut ecs_table_t,
    flags: ecs_flags32_t,
) -> bool
Expand description

Test table for flags. Test if table has all of the provided flags. See include/flecs/private/api_flags.h for a list of table flags that can be used with this function.

@param table The table. @param flags The flags to test for. @return Whether the specified flags are set for the table.