
delight.functional.collections.ReadOnlyList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of delight-functional Show documentation
Show all versions of delight-functional Show documentation
Utilities for functional-style Java applications.
The newest version!
package delight.functional.collections;
import java.util.List;
@SuppressWarnings("all")
public interface ReadOnlyList extends Iterable {
public abstract int size();
public abstract boolean isEmpty();
public abstract boolean contains(final Object o);
public abstract E get(final int index);
public abstract List asList();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy