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

collections.immutable.List23List Maven / Gradle / Ivy

The newest version!
package collections.immutable;

import java.util.AbstractList;

final class List23List extends AbstractList {
	private final ImmList list23;

	public List23List(ImmList list23) {
		super();
		this.list23 = list23;
	}
	
	@Override
	public E get(int index) {
		return list23.getAt(index);
	}

	@Override
	public int size() {
		return list23.size();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy