Lines Matching refs:comparator

13 * <a href="#_differencewitharray-values-comparator">`_.differenceWith`</a>
31 * <a href="#_intersectionwitharrays-comparator">`_.intersectionWith`</a>
39 * <a href="#_pullallwitharray-values-comparator">`_.pullAllWith`</a>
59 * <a href="#_unionwitharrays-comparator">`_.unionWith`</a>
62 * <a href="#_uniqwitharray-comparator">`_.uniqWith`</a>
68 * <a href="#_xorwitharrays-comparator">`_.xorWith`</a>
577 <h3 id="_differencewitharray-values-comparator"><code>_.differenceWith(array, [values], [comparator
580 This method is like `_.difference` except that it accepts `comparator`
582 references of result values are determined by the first array. The comparator
594 3. `[comparator]` *(Function)*: The comparator invoked per element.
1166 <h3 id="_intersectionwitharrays-comparator"><code>_.intersectionWith([arrays], [comparator])</code>…
1169 This method is like `_.intersection` except that it accepts `comparator`
1171 of result values are determined by the first array. The comparator is
1179 2. `[comparator]` *(Function)*: The comparator invoked per element.
1415 <h3 id="_pullallwitharray-values-comparator"><code>_.pullAllWith(array, values, [comparator])</code…
1418 This method is like `_.pullAll` except that it accepts `comparator` which
1419 is invoked to compare elements of `array` to `values`. The comparator is
1431 3. `[comparator]` *(Function)*: The comparator invoked per element.
2068 <h3 id="_unionwitharrays-comparator"><code>_.unionWith([arrays], [comparator])</code></h3>
2071 This method is like `_.union` except that it accepts `comparator` which
2073 the first array in which the value occurs. The comparator is invoked
2081 2. `[comparator]` *(Function)*: The comparator invoked per element.
2163 <h3 id="_uniqwitharray-comparator"><code>_.uniqWith(array, [comparator])</code></h3>
2166 This method is like `_.uniq` except that it accepts `comparator` which
2168 determined by the order they occur in the array.The comparator is invoked
2176 2. `[comparator]` *(Function)*: The comparator invoked per element.
2348 <h3 id="_xorwitharrays-comparator"><code>_.xorWith([arrays], [comparator])</code></h3>
2351 This method is like `_.xor` except that it accepts `comparator` which is
2353 determined by the order they occur in the arrays. The comparator is invoked
2361 2. `[comparator]` *(Function)*: The comparator invoked per element.