All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vladsch.flexmark.util.collection.iteration.Indexed Maven / Gradle / Ivy

The newest version!
package com.vladsch.flexmark.util.collection.iteration;

public interface Indexed {
  E get(int index);

  void set(int index, E item);

  void removeAt(int index);

  int size();

  int modificationCount();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy