@ -55,12 +55,12 @@ public unsafe class Iterator
public virtual bool Next()
=> ecs_iter_next(Handle);
public bool Any()
{ using (this) return Next(); }
public Entity First()
=> new(ecs_iter_first(Handle));
=> ecs_iter_is_true(Handle);
public IEnumerable<Entity> GetAllEntities()
{
while (Next())