Static
countStatic
distinctStatic
groupGroups the elements of an array in chunks of a specified size.
The size of each group
Static
livenessAdds liveness functionality to a given observer stream.
The fallback function to be called when liveness times out.
The time period in milliseconds to wait for liveness before calling the fallback function. Default is 5000 milliseconds.
Static
pairApplies a pairwise transformation to an observer.
Optional
by: number = 2The number of values in each pair.
Static
skipStatic
strideApplies stride tricks to a given target observer.
The size of each stride.
Optional
step: number = ...The step size between each stride.
The transformed observer that emits strided data.
Static
takeTakes a count number as an input and returns a higher-order function that accepts a target TObserver. The higher-order function returns a TObserver that filters the values emitted by the target TObserver based on the count. Only values with an index less than or equal to the count will be emitted.
The maximum index of values to be emitted.
A higher-order function that accepts a target TObserver and returns a TObserver that filters values based on the count.
Represents a collection of static operator functions.