<O> IStream<O,E> |
IStream.convert(IAggregator<Integer,T,O,E> aggregator) |
<O> IStream<O,E> |
FailedStream.convert(IAggregator<Integer,T,O,E> aggregator) |
<O> IStream<O,E> |
IStream.convert(IConverter<T,O,E> funtion) |
<O> IStream<O,E> |
FailedStream.convert(IConverter<T,O,E> funtion) |
IStream<T,E> |
IStream.distinct() |
IStream<T,E> |
FailedStream.distinct() |
IStream<T,E> |
IStream.failed(ISupplier<Iterable<T>,E> supplier) |
IStream<T,E> |
FailedStream.failed(ISupplier<Iterable<T>,E> supplier) |
IStream<T,E> |
IStream.filter(IAcceptor<T> funtion) |
IStream<T,E> |
FailedStream.filter(IAcceptor<T> funtion) |
<O> IStream<O,E> |
IStream.flat(IConverter<T,Iterable<O>,E> funtion) |
<O> IStream<O,E> |
FailedStream.flat(IConverter<T,Iterable<O>,E> funtion) |
IStream<T,E> |
IStream.foreach(IAssimilator<Integer,T,E> assimilator) |
IStream<T,E> |
FailedStream.foreach(IAssimilator<Integer,T,E> assimilator) |
IStream<T,E> |
IStream.foreach(IConsumer<T,E> consumer) |
IStream<T,E> |
FailedStream.foreach(IConsumer<T,E> consumer) |
<O> IStream<O,E> |
IStream.instanceOf(Class<O> clazz) |
<O> IStream<O,E> |
FailedStream.instanceOf(Class<O> clazz) |
IStream<T,E> |
IStream.notNull() |
IStream<T,E> |
FailedStream.notNull() |
static <T,E extends Exception> IStream<T,E> |
Streams.of(Class<E> exceptionClass,
IIterable<T,E> input) |
static <T,E extends Exception> IStream<T,E> |
Streams.of(Class<E> exceptionClass,
Iterable<T> input) |
static <T,E extends Exception> IStream<T,E> |
Streams.of(Class<E> exceptionClass,
Iterator<T> iterator) |
static <T,E extends Exception> IStream<T,E> |
Streams.of(Class<E> exceptionClass,
T[] input) |
static IStream<Double,RuntimeException> |
Streams.of(double[] input) |
static <T> IStream<T,RuntimeException> |
Streams.of(IIterable<T,RuntimeException> input) |
static IStream<Integer,RuntimeException> |
Streams.of(int[] input) |
static <T> IStream<T,RuntimeException> |
Streams.of(Iterable<T> input) |
static <T> IStream<T,RuntimeException> |
Streams.of(T[] input) |
IStream<T,E> |
IStream.revert() |
IStream<T,E> |
FailedStream.revert() |
IStream<Integer,E> |
Streams.From.until(int value) |