summaryrefslogtreecommitdiff
path: root/numpy/_array_api/_set_functions.py
blob: 7603b6b30b06a157a68ab123db5aedf78baf3422 (plain)
1
2
3
4
import numpy as np

def unique(x, /, *, return_counts=False, return_index=False, return_inverse=False, sorted=True):
    return np.unique(x, return_counts=return_counts, return_index=return_index, return_inverse=return_inverse, sorted=sorted)