| | |
| | | } |
| | | interface LoDashStatic { |
| | | /** |
| | | * Creates an array of unique array values not included in the other provided arrays using SameValueZero for |
| | | * equality comparisons. |
| | | * Creates an array of `array` values not included in the other provided arrays using SameValueZero for |
| | | * equality comparisons. The order and references of result values are determined by the first array. |
| | | * |
| | | * @param array The array to inspect. |
| | | * @param values The arrays of values to exclude. |
| | |
| | | } |
| | | interface LoDashStatic { |
| | | /** |
| | | * This method is like _.difference except that it accepts iteratee which is invoked for each element of array |
| | | * and values to generate the criterion by which uniqueness is computed. The iteratee is invoked with one |
| | | * argument: (value). |
| | | * This method is like _.difference except that it accepts iteratee which is invoked for each element |
| | | * of array and values to generate the criterion by which they're compared. The order and references |
| | | * of result values are determined by the first array. The iteratee is invoked with one argument: (value). |
| | | * |
| | | * @param array The array to inspect. |
| | | * @param values The values to exclude. |
| | |
| | | } |
| | | interface LoDashStatic { |
| | | /** |
| | | * Creates an array of unique `array` values not included in the other |
| | | * provided arrays using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) |
| | | * for equality comparisons. |
| | | * This method is like _.difference except that it accepts comparator which is invoked to compare elements |
| | | * of array to values. The order and references of result values are determined by the first array. The |
| | | * comparator is invoked with two arguments: (arrVal, othVal). |
| | | * |
| | | * @category Array |
| | | * @param [values] The arrays to inspect. |