Class BinaryArrayTransform
Provides an abstract base class for operators that perform a binary transformation on pairs of array-like objects in an observable sequence.
[Combinator]
[WorkflowElementCategory(ElementCategory.Transform)]
public abstract class BinaryArrayTransform
- Inheritance
-
BinaryArrayTransform
- Derived
- Inherited Members
Methods
Process<TArray>(IObservable<Tuple<TArray, TArray>>)
When overridden in a derived class, applies a binary transformation to all pairs of array-like objects in an observable sequence.
public abstract IObservable<TArray> Process<TArray>(IObservable<Tuple<TArray, TArray>> source) where TArray : Arr
Parameters
source
IObservable<Tuple<TArray, TArray>>A sequence containing the pairs of array-like objects for which to apply the binary transformation.
Returns
- IObservable<TArray>
A sequence containing the results of the binary transformation.
Type Parameters
TArray
The type of the array-like objects in the
source
sequence.