1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
from typing import Callable, Optional, TypeVar
from reactivex import Observable, abc
from reactivex.internal import ArgumentOutOfRangeException
_T = TypeVar("_T")
def skip_(count: int) -> Callable[[Observable[_T]], Observable[_T]]:
if count < 0:
raise ArgumentOutOfRangeException()
def skip(source: Observable[_T]) -> Observable[_T]:
"""The skip operator.
Bypasses a specified number of elements in an observable sequence
and then returns the remaining elements.
Args:
source: The source observable.
Returns:
An observable sequence that contains the elements that occur
after the specified index in the input sequence.
"""
def subscribe(
observer: abc.ObserverBase[_T],
scheduler: Optional[abc.SchedulerBase] = None,
):
remaining = count
def on_next(value: _T) -> None:
nonlocal remaining
if remaining <= 0:
observer.on_next(value)
else:
remaining -= 1
return source.subscribe(
on_next, observer.on_error, observer.on_completed, scheduler=scheduler
)
return Observable(subscribe)
return skip
__all__ = ["skip_"]
|