from
Last updated
Was this helpful?
Last updated
Was this helpful?
This method creates a new Observable sequence from an array-like or iterable object.
iterable
(Array
| Arguments
| Iterable
): An array-like or iterable object to convert to an Observable sequence.
[mapFn]
(Function
): Map function to call on every element of the array.
[thisArg]
(Any
): The context to use calling the mapFn if provided.
[scheduler=Rx.Scheduler.currentThread]
(Scheduler
): Scheduler to run the enumeration of the input sequence on.
(Observable
): The observable sequence whose elements are pulled from the given iterable sequence.