-
Notifications
You must be signed in to change notification settings - Fork 8
Aggregates
Luis Llamas edited this page Apr 24, 2019
·
8 revisions
Aggregates operators are Hot observers, they emit as soon as a new item is received.
If you want to apply to the whole sequence, consider combine with Last() operator.
Count the items received
Count()
Sum the items received
Sum()
Minimium of the items received
Min()
Maximum of the items received
Max()
Average of the items received
Average()
Return true if any of the received items satisfy a condition
Any(ReactiveCondition<T> condition)
Return true if all of the received items satisfy a condition
All(ReactiveCondition<T> condition)
Return true if none of the received items satisfy a condition
None(ReactiveCondition<T> condition)