blob: f218f11874129c695e38666992a331e7a6fe5a85 (
plain)
1
2
3
4
5
|
def unique(x, /, *, return_counts=False, return_index=False, return_inverse=False, sorted=True):
from .. import unique
return unique(x, return_counts=return_counts, return_index=return_index, return_inverse=return_inverse, sorted=sorted)
__all__ = ['unique']
|