Class | Description |
---|---|
AggregateIterable<T,U,V> |
Aggregates the source values via a sum function and
applies a divide function to return the final result.
|
AllIterable<T> |
Returns an iterable which returns a single true if
the predicate matches all elements in the source sequence
or false otherwise.
|
AnyIterable<T> |
Iterable sequence that returns a single true if the source sequence contains any
element.
|
BufferIterable<T> |
Iterable sequence containing a list of subsequent values from the source sequence
up to a given buffer size each.
|
CastIterable<T> | |
ConcatIterable<T> | |
CountIterable<T> | |
DeferIterable<T> | |
DematerializeIterable<T> | |
DoOnCompletedIterable<T> | |
DoOnEachIterable<T> | |
DoOnNextIterable<T> | |
DoWhileIterable<T> | |
EnumerationToIterator<T> | |
ErrorIterable<T> |
Iterable sequence which throws a specific exception when the first element is retrieved.
|
FilterIndexedIterable<T> | |
FlatMapIterable<U,T> | |
GenerateIterable<T> |
Iterable sequence similar to a for-loop which generates sequence of values by
using callback functions.
|
GenerateIterableTimed<T> | |
Interactive |
The interactive (i.e.,
Iterable based) counterparts
of the Reactive operators. |
IteratorToEnumerator<T> | |
JustIterable<T> |
Iterable sequence with a specific single value.
|
LongCountIterable<T> | |
LongRangeIterable |
Iterable sequence with long values from a start value producing count values.
|
MapIndexedIterable<U,T> | |
MaterializeIterable<T> | |
MemoizeAllIterable<T> | |
MemoizeIterable<T> |
Memoizes the source sequence with a given buffer size.
|
MergeIterable<T> | |
MinMaxIterable<T,U> |
Iterable sequence that returns the minimum or maximum of the source sequence
according to a key selector and key comparator.
|
OnErrorResumeNext<T> | |
OnErrorResumeNextIterable<T> | |
OrderByIterable<T,U> |
Iterable sequence which sorts the source (finite) sequence accoring to the given
key selector and key comparator functions.
|
PartialIterable<T> |
Iterable sequence which returns values from a range in an array of items.
|
PrintAction1<T> |
Helper action that prints elements to the console.
|
RangeIterable |
Iterable sequence of integer values from a start value and count values.
|
RepeatCountIterable<T> |
Iterable sequence which repeates the same value a certain number of times.
|
RepeatIterable<T> |
Iterable sequence which repeates the same value indefinitely.
|
RetryIterable<T> | |
ScanIterable<U,T> | |
ShareIterable<T> | |
ShareSelectorIterable<T,U> | |
SkipLastIterable<T> | |
SubsequentCountIterable<T> | |
SubsequentIterable<T> | |
SwitchCaseIterable<U,T> | |
TakeIterable<T> |
Iterable sequence that takes the first elements of the source sequence.
|
TakeLastIterable<T> | |
ToIterable<T> |
Convert the given observable instance into a classical iterable instance.
|
UsingIterable<T,U extends java.io.Closeable> | |
ZipIterable<T,U,V> |
Iterable sequence containing the zipped values of two other sequences.
|