public interface MIter extends Iter
for (MIter iter = ids.iter(); iter.valid(); iter.advance()) {
if (testSomething(iter)) {
iter.remove();
continue; // Iterator may point to something else
}
}
Modifier and Type | Method and Description |
---|---|
void |
remove()
Remove the object the iterator currently points to.
|
Copyright © 2019 ELKI Development Team. License information.