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

delight.functional.collections.ReadOnlyList Maven / Gradle / Ivy

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