pub unsafe extern "C" fn ecs_table_remove_id(
world: *mut ecs_world_t,
table: *mut ecs_table_t,
id: ecs_id_t,
) -> *mut ecs_table_tExpand description
Get table that has all components of current table minus the specified id. If the provided table doesn’t have the provided id, the operation will return the provided table.
@param world The world. @param table The table. @param id The id to remove. @result The resulting table.