Skip to content

Commit

Permalink
add setdiff1d to xpx module
Browse files Browse the repository at this point in the history
  • Loading branch information
lucascolley committed Nov 23, 2024
1 parent d007f4e commit 5d797c3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/array_api_extra/__init__.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
from __future__ import annotations

from ._funcs import atleast_nd, cov, create_diagonal, expand_dims, kron, sinc
from ._funcs import atleast_nd, cov, create_diagonal, expand_dims, kron, setdiff1d, sinc

__version__ = "0.2.1.dev0"

# pylint: disable=duplicate-code
__all__ = [
"__version__",
"atleast_nd",
"cov",
"create_diagonal",
"expand_dims",
"kron",
"setdiff1d",
"sinc",
]

0 comments on commit 5d797c3

Please sign in to comment.