We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf67bb8 commit 36a422fCopy full SHA for 36a422f
src/array_api_extra/_delegation.py
@@ -31,8 +31,8 @@ def _delegate(xp: ModuleType, *backends: Backend) -> bool:
31
32
33
def isclose(
34
- a: Array,
35
- b: Array,
+ a: Array | complex,
+ b: Array | complex,
36
*,
37
rtol: float = 1e-05,
38
atol: float = 1e-08,
src/array_api_extra/_lib/_funcs.py
@@ -642,7 +642,7 @@ def setdiff1d(
642
643
Parameters
644
----------
645
- x1 : array
+ x1 : array | int | float | complex | bool
646
Input array.
647
x2 : array
648
Input comparison array.
0 commit comments