com.vladsch.flexmark.util.collection.iteration.Indexed Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-util-collection Show documentation
Show all versions of flexmark-util-collection Show documentation
flexmark-java collection utility classes
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();
}