Package elki.index

Interface DynamicIndex

    • Method Detail

      • delete

        boolean delete​(DBIDRef id)
        Deletes the specified object from this index.
        Parameters:
        id - Object to remove
        Returns:
        true if this index did contain the object, false otherwise
      • insert

        void insert​(DBIDRef id)
        Inserts the specified object into this index.
        Parameters:
        id - the object to be inserted
      • deleteAll

        void deleteAll​(DBIDs ids)
        Deletes the specified objects from this index.
        Parameters:
        ids - Objects to remove
      • insertAll

        void insertAll​(DBIDs ids)
        Inserts the specified objects into this index. If a bulk load mode is implemented, the objects are inserted in one bulk.
        Parameters:
        ids - the objects to be inserted