summaryrefslogtreecommitdiff
path: root/numpy/_array_api/_set_functions.py
blob: b6198765a6b92104bd504266bee7b9de3629a8a1 (plain)
1
2
3
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)