🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-08 09:28:01 | 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: _combinelatest.py
Read Only
from typing import Any, Callable import reactivex from reactivex import Observable def combine_latest_( *others: Observable[Any], ) -> Callable[[Observable[Any]], Observable[Any]]: def combine_latest(source: Observable[Any]) -> Observable[Any]: """Merges the specified observable sequences into one observable sequence by creating a tuple whenever any of the observable sequences produces an element. Examples: >>> obs = combine_latest(source) Returns: An observable sequence containing the result of combining elements of the sources into a tuple. """ sources = (source,) + others return reactivex.combine_latest(*sources) return combine_latest __all__ = ["combine_latest_"]
💾 Save Changes
❌ Cancel