mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 11:30:18 +00:00
Update array2d.pyi
Update array2d.pyi
This commit is contained in:
parent
eb414df4cd
commit
2f2602f3ff
@ -46,18 +46,18 @@ class array2d_like[T]:
|
|||||||
def __eq__(self, other: T | array2d_like[T]) -> array2d[bool]: ... # type: ignore
|
def __eq__(self, other: T | array2d_like[T]) -> array2d[bool]: ... # type: ignore
|
||||||
def __ne__(self, other: T | array2d_like[T]) -> array2d[bool]: ... # type: ignore
|
def __ne__(self, other: T | array2d_like[T]) -> array2d[bool]: ... # type: ignore
|
||||||
|
|
||||||
def __add__(self, other: T | array2d_like[T]) -> array2d: ...
|
def __add__(self, other: T | array2d_like[T]) -> array2d[T]: ...
|
||||||
def __sub__(self, other: T | array2d_like[T]) -> array2d: ...
|
def __sub__(self, other: T | array2d_like[T]) -> array2d[T]: ...
|
||||||
def __mul__(self, other: T | array2d_like[T]) -> array2d: ...
|
def __mul__(self, other: T | array2d_like[T]) -> array2d[T]: ...
|
||||||
def __truediv__(self, other: T | array2d_like[T]) -> array2d: ...
|
def __truediv__(self, other: T | array2d_like[T]) -> array2d[T]: ...
|
||||||
def __floordiv__(self, other: T | array2d_like[T]) -> array2d: ...
|
def __floordiv__(self, other: T | array2d_like[T]) -> array2d[T]: ...
|
||||||
def __mod__(self, other: T | array2d_like[T]) -> array2d: ...
|
def __mod__(self, other: T | array2d_like[T]) -> array2d[T]: ...
|
||||||
def __pow__(self, other: T | array2d_like[T]) -> array2d: ...
|
def __pow__(self, other: T | array2d_like[T]) -> array2d[T]: ...
|
||||||
|
|
||||||
def __and__(self, other: T | array2d_like[T]) -> array2d: ...
|
def __and__(self, other: T | array2d_like[T]) -> array2d[T]: ...
|
||||||
def __or__(self, other: T | array2d_like[T]) -> array2d: ...
|
def __or__(self, other: T | array2d_like[T]) -> array2d[T]: ...
|
||||||
def __xor__(self, other: T | array2d_like[T]) -> array2d: ...
|
def __xor__(self, other: T | array2d_like[T]) -> array2d[T]: ...
|
||||||
def __invert__(self) -> array2d: ...
|
def __invert__(self) -> array2d[T]: ...
|
||||||
|
|
||||||
def __iter__(self) -> Iterator[tuple[vec2i, T]]: ...
|
def __iter__(self) -> Iterator[tuple[vec2i, T]]: ...
|
||||||
def __repr__(self) -> str: ...
|
def __repr__(self) -> str: ...
|
||||||
|
Loading…
x
Reference in New Issue
Block a user