🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-08 14:21:39 | PHP 8.2.32
📂
/ (Root)
/
opt
/
alt
/
python38
/
lib
/
python3.8
/
site-packages
/
reactivex
/
operators
📍 /opt/alt/python38/lib/python3.8/site-packages/reactivex/operators
🔄 Refresh
✏️
Editing: _startswith.py
Read Only
from typing import Callable, TypeVar import reactivex from reactivex import Observable _T = TypeVar("_T") def start_with_(*args: _T) -> Callable[[Observable[_T]], Observable[_T]]: def start_with(source: Observable[_T]) -> Observable[_T]: """Partially applied start_with operator. Prepends a sequence of values to an observable sequence. Example: >>> start_with(source) Returns: The source sequence prepended with the specified values. """ start = reactivex.from_iterable(args) sequence = [start, source] return reactivex.concat(*sequence) return start_with __all__ = ["start_with_"]
💾 Save Changes
❌ Cancel