{% if book.isPdf %}
{% else %}
{% endif %}
Converts an array to an observable sequence, using an optional scheduler to enumerate the array.
initialState
(Any
): Initial state.condition
(Function
): Condition to terminate generation (upon returning false).iterate
(Function
): Iteration step function.resultSelector
(Function
): Selector function for results produced in the sequence.[scheduler=Rx.Scheduler.currentThread]
(Scheduler
): Scheduler on which to run the generator loop. If not provided, defaults to Scheduler.currentThread.
(Observable
): The generated sequence.