Class ShuffleArray
- Namespace
- CF
- Assembly
- Extensions.dll
Class ShuffleArray
contains the logic of the Bonsai node with the same name.
[Combinator]
[WorkflowElementCategory(ElementCategory.Transform)]
public class ShuffleArray
- Inheritance
-
ShuffleArray
- Inherited Members
Methods
Process<TSource>(IObservable<TSource[]>)
Shuffles the input array.
public IObservable<TSource[]> Process<TSource>(IObservable<TSource[]> source)
Parameters
source
IObservable<TSource[]>the input data stream, which sends arrays of the type TSource.
Returns
- IObservable<TSource[]>
The shuffled input array (of type TSource).
Type Parameters
TSource
The type of the elements of the input array.