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

com.g2forge.alexandria.collection.ICollection Maven / Gradle / Ivy

There is a newer version: 0.0.7
Show newest version
package com.g2forge.alexandria.collection;

import java.util.Collection;
import java.util.stream.Stream;

/**
 * Simple interface for a collection of elements which can be examined. This interface may need to be renamed later given the number of things called
 * "collections".
 *
 * @param  The type of the elements in this collection.
 * 
 * @see DIteratorCollection
 * @see DCollectionCollection
 * @see DStreamCollection
 */
public interface ICollection extends Iterable {
	public Stream stream();

	public Collection toCollection();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy