| Interface | Description |
|---|---|
| FastStream<T> |
An iterable capable of stream-like operations.
|
| StreamableIterable<T> | Deprecated
Deprecated in favour of
FastStream. |
| Class | Description |
|---|---|
| AbstractIterator<T> |
Created by covers1624 on 19/1/23.
|
| ColFormatter |
Simple column formatter.
|
| ColUtils |
Various Collection Utilities for Iterables and Arrays.
|
| FastStream.Concatenated<T> | |
| FastStream.ConcatenatedN<T> |
A
FastStream for an array of concatenated Iterables. |
| FastStream.Distinct<T> | |
| FastStream.Filtered<T> |
A
FastStream with a filtering function applied. |
| FastStream.FlatMapped<T,R> |
A
FastStream with a flat mapping option applied
to each element flattened together. |
| FastStream.Group<K,V> |
Represents a Key to sequence of values in a
FastStream.groupBy(java.util.function.Function<? super T, ? extends K>) grouping. |
| FastStream.Grouped<T,K,V> |
A
FastStream of elements grouped by a specific key. |
| FastStream.Internal | |
| FastStream.Mapped<T,R> |
A
FastStream with a mapping function applied. |
| FastStream.OfN<T> |
A
FastStream for an array of elements. |
| FastStream.OfSingle<T> |
A
FastStream for a single element. |
| FastStream.Peeked<T> |
A
FastStream with a listener attached. |
| FastStream.Sliced<T> |
A
FastStream with a min/max filter applied. |
| FastStream.Sorted<T> |
A
FastStream sorted by a comparator. |
| FastStream.TypeCheck<T,S> | |
| FastStream.Wrapped<T> |
Wraps a regular
Iterable into a FastStream. |
| Object2IntPair<T> |
Created by covers1624 on 4/19/20.
|
| TypedMap |
Created by covers1624 on 12/8/19.
|
| TypedMap.Key<T> |