forked from pandas-dev/pandas
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Typeinterval part2 (pandas-dev#46098)
- Loading branch information
Showing
3 changed files
with
183 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,174 @@ | ||
from __future__ import annotations | ||
|
||
from typing import ( | ||
Any, | ||
Generic, | ||
TypeVar, | ||
Union, | ||
overload, | ||
) | ||
|
||
import numpy as np | ||
import numpy.typing as npt | ||
|
||
from pandas._typing import ( | ||
IntervalClosedType, | ||
Timedelta, | ||
Timestamp, | ||
) | ||
|
||
VALID_CLOSED: frozenset[str] | ||
|
||
_OrderableScalarT = TypeVar("_OrderableScalarT", int, float) | ||
_OrderableTimesT = TypeVar("_OrderableTimesT", Timestamp, Timedelta) | ||
_OrderableT = TypeVar("_OrderableT", int, float, Timestamp, Timedelta) | ||
|
||
class _LengthDescriptor: | ||
@overload | ||
def __get__( | ||
self, instance: Interval[_OrderableScalarT], owner: Any | ||
) -> _OrderableScalarT: ... | ||
@overload | ||
def __get__( | ||
self, instance: Interval[_OrderableTimesT], owner: Any | ||
) -> Timedelta: ... | ||
@overload | ||
def __get__(self, instance: IntervalTree, owner: Any) -> np.ndarray: ... | ||
|
||
class _MidDescriptor: | ||
@overload | ||
def __get__(self, instance: Interval[_OrderableScalarT], owner: Any) -> float: ... | ||
@overload | ||
def __get__( | ||
self, instance: Interval[_OrderableTimesT], owner: Any | ||
) -> _OrderableTimesT: ... | ||
@overload | ||
def __get__(self, instance: IntervalTree, owner: Any) -> np.ndarray: ... | ||
|
||
class IntervalMixin: | ||
@property | ||
def closed_left(self) -> bool: ... | ||
@property | ||
def closed_right(self) -> bool: ... | ||
@property | ||
def open_left(self) -> bool: ... | ||
@property | ||
def open_right(self) -> bool: ... | ||
mid: _MidDescriptor | ||
length: _LengthDescriptor | ||
@property | ||
def is_empty(self) -> bool: ... | ||
def _check_closed_matches(self, other: IntervalMixin, name: str = ...) -> None: ... | ||
|
||
class Interval(IntervalMixin, Generic[_OrderableT]): | ||
@property | ||
def left(self: Interval[_OrderableT]) -> _OrderableT: ... | ||
@property | ||
def right(self: Interval[_OrderableT]) -> _OrderableT: ... | ||
@property | ||
def closed(self) -> IntervalClosedType: ... | ||
def __init__( | ||
self, | ||
left: _OrderableT, | ||
right: _OrderableT, | ||
closed: IntervalClosedType = ..., | ||
): ... | ||
def __hash__(self) -> int: ... | ||
@overload | ||
def __contains__(self: Interval[_OrderableTimesT], _OrderableTimesT) -> bool: ... | ||
@overload | ||
def __contains__( | ||
self: Interval[_OrderableScalarT], key: Union[int, float] | ||
) -> bool: ... | ||
def __repr__(self) -> str: ... | ||
def __str__(self) -> str: ... | ||
@overload | ||
def __add__( | ||
self: Interval[_OrderableTimesT], y: Timedelta | ||
) -> Interval[_OrderableTimesT]: ... | ||
@overload | ||
def __add__(self: Interval[int], y: int) -> Interval[int]: ... | ||
@overload | ||
def __add__(self: Interval[int], y: float) -> Interval[float]: ... | ||
@overload | ||
def __add__(self: Interval[float], y: Union[int, float]) -> Interval[float]: ... | ||
@overload | ||
def __radd__( | ||
self: Interval[_OrderableTimesT], y: Timedelta | ||
) -> Interval[_OrderableTimesT]: ... | ||
@overload | ||
def __radd__(self: Interval[int], y: int) -> Interval[int]: ... | ||
@overload | ||
def __radd__(self: Interval[int], y: float) -> Interval[float]: ... | ||
@overload | ||
def __radd__(self: Interval[float], y: Union[int, float]) -> Interval[float]: ... | ||
@overload | ||
def __sub__( | ||
self: Interval[_OrderableTimesT], y: Timedelta | ||
) -> Interval[_OrderableTimesT]: ... | ||
@overload | ||
def __sub__(self: Interval[int], y: int) -> Interval[int]: ... | ||
@overload | ||
def __sub__(self: Interval[int], y: float) -> Interval[float]: ... | ||
@overload | ||
def __sub__(self: Interval[float], y: Union[int, float]) -> Interval[float]: ... | ||
@overload | ||
def __rsub__( | ||
self: Interval[_OrderableTimesT], y: Timedelta | ||
) -> Interval[_OrderableTimesT]: ... | ||
@overload | ||
def __rsub__(self: Interval[int], y: int) -> Interval[int]: ... | ||
@overload | ||
def __rsub__(self: Interval[int], y: float) -> Interval[float]: ... | ||
@overload | ||
def __rsub__(self: Interval[float], y: Union[int, float]) -> Interval[float]: ... | ||
@overload | ||
def __mul__(self: Interval[int], y: int) -> Interval[int]: ... | ||
@overload | ||
def __mul__(self: Interval[int], y: float) -> Interval[float]: ... | ||
@overload | ||
def __mul__(self: Interval[float], y: Union[int, float]) -> Interval[float]: ... | ||
@overload | ||
def __rmul__(self: Interval[int], y: int) -> Interval[int]: ... | ||
@overload | ||
def __rmul__(self: Interval[int], y: float) -> Interval[float]: ... | ||
@overload | ||
def __rmul__(self: Interval[float], y: Union[int, float]) -> Interval[float]: ... | ||
@overload | ||
def __truediv__(self: Interval[int], y: int) -> Interval[int]: ... | ||
@overload | ||
def __truediv__(self: Interval[int], y: float) -> Interval[float]: ... | ||
@overload | ||
def __truediv__(self: Interval[float], y: Union[int, float]) -> Interval[float]: ... | ||
@overload | ||
def __floordiv__(self: Interval[int], y: int) -> Interval[int]: ... | ||
@overload | ||
def __floordiv__(self: Interval[int], y: float) -> Interval[float]: ... | ||
@overload | ||
def __floordiv__( | ||
self: Interval[float], y: Union[int, float] | ||
) -> Interval[float]: ... | ||
def overlaps(self: Interval[_OrderableT], other: Interval[_OrderableT]) -> bool: ... | ||
|
||
def intervals_to_interval_bounds( | ||
intervals: np.ndarray, validate_closed: bool = ... | ||
) -> tuple[np.ndarray, np.ndarray, str]: ... | ||
|
||
class IntervalTree(IntervalMixin): | ||
def __init__( | ||
self, | ||
left: np.ndarray, | ||
right: np.ndarray, | ||
closed: IntervalClosedType = ..., | ||
leaf_size: int = ..., | ||
): ... | ||
def get_indexer(self, target) -> npt.NDArray[np.intp]: ... | ||
def get_indexer_non_unique( | ||
self, target | ||
) -> tuple[npt.NDArray[np.intp], npt.NDArray[np.intp]]: ... | ||
_na_count: int | ||
@property | ||
def is_overlapping(self) -> bool: ... | ||
@property | ||
def is_monotonic_increasing(self) -> bool: ... | ||
def clear_mapping(self) -> None: ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters