Package elki.database.ids
Interface DBIDMIter
-
- All Known Subinterfaces:
DBIDArrayMIter
,DoubleDBIDListMIter
,DoubleIntegerDBIDListMIter
,IntegerDBIDArrayMIter
,IntegerDBIDMIter
- All Known Implementing Classes:
ArrayModifiableIntegerDBIDs.Itr
,DoubleIntegerDBIDArrayList.Itr
,EmptyDBIDs.EmptyDBIDIterator
,FastutilIntOpenHashSetModifiableDBIDs.Itr
public interface DBIDMIter extends DBIDIter, MIter
Modifiable DBID iterator.- Since:
- 0.5.0
- Author:
- Erich Schubert
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
remove()
Remove the object the iterator currently points to.-
Methods inherited from interface elki.database.ids.DBIDRef
equals, hashCode, internalGetIndex
-
-
-
-
Method Detail
-
remove
void remove()
Remove the object the iterator currently points to. Note: Subsequent calls toDBIDUtil.deref(elki.database.ids.DBIDRef)
may return a different element. CallDBIDIter.advance()
to advance the iterator to the next element for further processing.
-
-