Package com.koloboke.collect

The root package of the collection library.

See:
          Description

Interface Summary
ByteCollection A Collection specialization with byte elements.
ByteCursor A mutable pointer to the element in an iteration of bytes.
ByteIterator Primitive specialization of Iterator<Byte>.
CharCollection A Collection specialization with char elements.
CharCursor A mutable pointer to the element in an iteration of chars.
CharIterator Primitive specialization of Iterator<Character>.
Container The root interface of all collections within the library.
ContainerFactory<F extends ContainerFactory<F>> Root container factory interface.
Cursor A mutable pointer to the element in an iteration.
DoubleCollection A Collection specialization with double elements.
DoubleCursor A mutable pointer to the element in an iteration of doubles.
DoubleIterator Primitive specialization of Iterator<Double>.
FloatCollection A Collection specialization with float elements.
FloatCursor A mutable pointer to the element in an iteration of floats.
FloatIterator Primitive specialization of Iterator<Float>.
IntCollection A Collection specialization with int elements.
IntCursor A mutable pointer to the element in an iteration of ints.
IntIterator Primitive specialization of Iterator<Integer>.
LongCollection A Collection specialization with long elements.
LongCursor A mutable pointer to the element in an iteration of longs.
LongIterator Primitive specialization of Iterator<Long>.
ObjCollection<E> A collection of objects, the library's extension of the classic Collection interface.
ObjCursor<E> A mutable pointer to the element in an iteration of objects.
ObjIterator<E> Extends Iterator for the symmetry with primitive specializations.
ShortCollection A Collection specialization with short elements.
ShortCursor A mutable pointer to the element in an iteration of shorts.
ShortIterator Primitive specialization of Iterator<Short>.
 

Class Summary
Equivalence<T> A strategy for determining whether two instances are considered equivalent.
StatelessEquivalence<T> Base class for stateless Equivalence implementations.
 

Package com.koloboke.collect Description

The root package of the collection library.