/usr/share/cagefs-skeleton/opt/cloudlinux/venv/lib/python3.11/site-packages/numpy/lib
from collections.abc import Iterable from typing import Any, TypeVar, overload, SupportsIndex from numpy import generic from numpy._typing import ( NDArray, ArrayLike, _ShapeLike, _Shape, _ArrayLike ) _SCT = TypeVar("_SCT", bound=generic) __all__: list[str] class DummyArray: __array_interface__: dict[str, Any] base: None | NDArray[Any] def __init__( self, interface: dict[str, Any], base: None | NDArray[Any] = ..., ) -> None: ... @overload def as_strided( x: _ArrayLike[_SCT], shape: None | Iterable[int] = ..., strides: None | Iterable[int] = ..., subok: bool = ..., writeable: bool = ..., ) -> NDArray[_SCT]: ... @overload def as_strided( x: ArrayLike, shape: None | Iterable[int] = ..., strides: None | Iterable[int] = ..., subok: bool = ..., writeable: bool = ..., ) -> NDArray[Any]: ... @overload def sliding_window_view( x: _ArrayLike[_SCT], window_shape: int | Iterable[int], axis: None | SupportsIndex = ..., *, subok: bool = ..., writeable: bool = ..., ) -> NDArray[_SCT]: ... @overload def sliding_window_view( x: ArrayLike, window_shape: int | Iterable[int], axis: None | SupportsIndex = ..., *, subok: bool = ..., writeable: bool = ..., ) -> NDArray[Any]: ... @overload def broadcast_to( array: _ArrayLike[_SCT], shape: int | Iterable[int], subok: bool = ..., ) -> NDArray[_SCT]: ... @overload def broadcast_to( array: ArrayLike, shape: int | Iterable[int], subok: bool = ..., ) -> NDArray[Any]: ... def broadcast_shapes(*args: _ShapeLike) -> _Shape: ... def broadcast_arrays( *args: ArrayLike, subok: bool = ..., ) -> list[NDArray[Any]]: ...
.
Edit
..
Edit
__init__.py
Edit
__init__.pyi
Edit
__pycache__
Edit
_datasource.py
Edit
_iotools.py
Edit
_version.py
Edit
_version.pyi
Edit
arraypad.py
Edit
arraypad.pyi
Edit
arraysetops.py
Edit
arraysetops.pyi
Edit
arrayterator.py
Edit
arrayterator.pyi
Edit
format.py
Edit
format.pyi
Edit
function_base.py
Edit
function_base.pyi
Edit
histograms.py
Edit
histograms.pyi
Edit
index_tricks.py
Edit
index_tricks.pyi
Edit
mixins.py
Edit
mixins.pyi
Edit
nanfunctions.py
Edit
nanfunctions.pyi
Edit
npyio.py
Edit
npyio.pyi
Edit
polynomial.py
Edit
polynomial.pyi
Edit
recfunctions.py
Edit
scimath.py
Edit
scimath.pyi
Edit
setup.py
Edit
shape_base.py
Edit
shape_base.pyi
Edit
stride_tricks.py
Edit
stride_tricks.pyi
Edit
tests
Edit
twodim_base.py
Edit
twodim_base.pyi
Edit
type_check.py
Edit
type_check.pyi
Edit
ufunclike.py
Edit
ufunclike.pyi
Edit
user_array.py
Edit
utils.py
Edit
utils.pyi
Edit