-
-
Notifications
You must be signed in to change notification settings - Fork 149
feat(index): append #1282
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(index): append #1282
Changes from 1 commit
390e5d9
3a34057
45e0ad3
6c8ba76
3844062
ac0857b
67e6bde
fa3c401
d7a538d
fe5f1a9
1c75df6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -401,7 +401,12 @@ class Index(IndexOpsMixin[S1]): | |
) -> Self: ... | ||
@overload | ||
def __getitem__(self, idx: int | tuple[np_ndarray_anyint, ...]) -> S1: ... | ||
def append(self, other): ... | ||
@overload | ||
def append(self, other: Index[Never]) -> Index: ... | ||
@overload | ||
def append(self, other: Index[S1] | Sequence[Index[S1]]) -> Index[S1]: ... | ||
|
||
@overload | ||
def append(self, other: Index | Sequence) -> Index: ... | ||
def putmask(self, mask, value): ... | ||
def equals(self, other) -> bool: ... | ||
@final | ||
|
Uh oh!
There was an error while loading. Please reload this page.