🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-08 11:20:22 | PHP 8.2.32
📂
/ (Root)
/
opt
/
alt
/
python38
/
lib
/
python3.8
/
site-packages
/
reactivex
/
operators
/
__pycache__
📍 /opt/alt/python38/lib/python3.8/site-packages/reactivex/operators/__pycache__
🔄 Refresh
✏️
Editing: _takelast.cpython-38.pyc
Read Only
U v�iS � @ s\ d dl mZmZmZmZ d dlmZmZ ed�Ze eee gee f d�dd�Z dgZdS )� )�Callable�List�Optional�TypeVar)� Observable�abc�_T)�count�returnc s t t t t d�� fdd�}|S )N)�sourcer c s0 dt jt tt j t jd��� fdd� }t|�S )a� Returns a specified number of contiguous elements from the end of an observable sequence. Example: >>> res = take_last(source) This operator accumulates a buffer with a length enough to store elements count elements. Upon completion of the source sequence, this buffer is drained on the result sequence. This causes the elements to be delayed. Args: source: Number of elements to take from the end of the source sequence. Returns: An observable sequence containing the specified number of elements from the end of the source sequence. N)�observer� schedulerr c s<