Lodash.uniq

Creates a duplicate-free version of an array, using SameValueZero for equality comparisons, in which only the first occurrence of each element is kept. The order of result values is determined by the order they occur in the array.

struct Lodash
nothrow @trusted @safe ref
uniq
()
()

Return Value

Type: auto ref

- Lodash chained on (Array): the new duplicate free array.

Meta