🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-08 10:38:47 | 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: _concat.py
Read Only
from typing import Callable, TypeVar import reactivex from reactivex import Observable _T = TypeVar("_T") def concat_(*sources: Observable[_T]) -> Callable[[Observable[_T]], Observable[_T]]: def concat(source: Observable[_T]) -> Observable[_T]: """Concatenates all the observable sequences. Examples: >>> op = concat(xs, ys, zs) Returns: An operator function that takes one or more observable sources and returns an observable sequence that contains the elements of each given sequence, in sequential order. """ return reactivex.concat(source, *sources) return concat __all__ = ["concat_"]
💾 Save Changes
❌ Cancel