The array to inspect.
The iteratee invoked per element.
Returns the new duplicate free array.
This method is like uniq
except that it accepts iteratee
which is
invoked for each element in array
to generate the criterion by which
uniqueness is computed. The order of result values is determined by the
order they occur in the array. The iteratee is invoked with one argument:
(value).
Returns the new duplicate free array.
This method is like
uniq
except that it acceptsiteratee
which is invoked for each element inarray
to generate the criterion by which uniqueness is computed. The order of result values is determined by the order they occur in the array. The iteratee is invoked with one argument: (value).