Lodash.uniqWith

This method is like _.uniq except that it accepts comparator which is invoked to compare elements of array. The order of result values is determined by the order they occur in the array.The comparator is invoked with two arguments: (arrVal, othVal).

struct Lodash
nothrow @trusted @safe ref
uniqWith
(
T
)
(
auto ref T comparator = T.init
)

Return Value

Type: auto ref

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

Meta