Module ops

Source

Modules§

box_it
buffer
contains
debounce
default_if_empty
delay
distinct
filter
filter_map
finalize
flatten
group_by
last
map
map_to
merge
merge_all
observe_on
ref_count
sample
scan
skip
skip_last
skip_while
subscribe_on
take
take_last
take_until
take_while
throttle_time
zip

Type Aliases§

Accum
Holds intermediate computations of accumulated values for [Observable@Average] operator, as nominator and denominator respectively.
AverageOp
Realised as chained composition of scan->last->map operators.
CountOp
FlatMapOp
Returns an Observable that emits items based on applying a function that you supply to each item emitted by the source Observable, where that function returns an Observable, and then merging those resulting Observables and emitting the results of this merger.
MinMaxOp
Realised as chained composition of scan->last->map operators.
ReduceOp
SumOp