8000 Add `searchsorted` to the specification by kgryte · Pull Request #699 · data-apis/array-api · GitHub
[go: up one dir, main page]

Skip to content

Add searchsorted to the specification #699

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

Merged
merged 11 commits into from
Jan 11, 2024
Prev Previous commit
Next Next commit
fix: import Literal type
  • Loading branch information
kgryte committed Nov 6, 2023
commit b89ae7de04825701e23eb66ad25bd86b2081a2a6
2 changes: 1 addition & 1 deletion src/array_api_stubs/_draft/searching_functions.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__all__ = ["argmax", "argmin", "nonzero", "where"]


from ._types import Optional, Tuple, array
from ._types import Optional, Tuple, Literal, array


def argmax(x: array, /, *, axis: Optional[int] = None, keepdims: bool = False) -> array:
Expand Down
0