57 lines
2.5 KiB
TypeScript
57 lines
2.5 KiB
TypeScript
import { ValueIteratee } from '../_internal/ValueIteratee.js';
|
|
|
|
/**
|
|
* This method is like `xor` except that it accepts `iteratee` which is
|
|
* invoked for each element of each `arrays` to generate the criterion by which
|
|
* uniqueness is computed. The iteratee is invoked with one argument: (value).
|
|
*
|
|
* @template T
|
|
* @param {ArrayLike<T> | null | undefined} arrays - The arrays to inspect.
|
|
* @param {ValueIteratee<T>} [iteratee] - The iteratee invoked per element.
|
|
* @returns {T[]} Returns the new array of values.
|
|
*
|
|
* @example
|
|
* xorBy([2.1, 1.2], [4.3, 2.4], Math.floor);
|
|
* // => [1.2, 4.3]
|
|
*
|
|
* @example
|
|
* xorBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x');
|
|
* // => [{ 'x': 2 }]
|
|
*/
|
|
declare function xorBy<T>(arrays: ArrayLike<T> | null | undefined, iteratee?: ValueIteratee<T>): T[];
|
|
/**
|
|
* This method is like `xor` except that it accepts `iteratee` which is
|
|
* invoked for each element of each `arrays` to generate the criterion by which
|
|
* uniqueness is computed. The iteratee is invoked with one argument: (value).
|
|
*
|
|
* @template T
|
|
* @param {ArrayLike<T> | null | undefined} arrays - The first array to inspect.
|
|
* @param {ArrayLike<T> | null | undefined} arrays2 - The second array to inspect.
|
|
* @param {ValueIteratee<T>} [iteratee] - The iteratee invoked per element.
|
|
* @returns {T[]} Returns the new array of values.
|
|
*
|
|
* @example
|
|
* xorBy([2.1, 1.2], [4.3, 2.4], Math.floor);
|
|
* // => [1.2, 4.3]
|
|
*/
|
|
declare function xorBy<T>(arrays: ArrayLike<T> | null | undefined, arrays2: ArrayLike<T> | null | undefined, iteratee?: ValueIteratee<T>): T[];
|
|
/**
|
|
* This method is like `xor` except that it accepts `iteratee` which is
|
|
* invoked for each element of each `arrays` to generate the criterion by which
|
|
* uniqueness is computed. The iteratee is invoked with one argument: (value).
|
|
*
|
|
* @template T
|
|
* @param {ArrayLike<T> | null | undefined} arrays - The first array to inspect.
|
|
* @param {ArrayLike<T> | null | undefined} arrays2 - The second array to inspect.
|
|
* @param {ArrayLike<T> | null | undefined} arrays3 - The third array to inspect.
|
|
* @param {...Array<ValueIteratee<T> | ArrayLike<T> | null | undefined>} iteratee - The iteratee invoked per element.
|
|
* @returns {T[]} Returns the new array of values.
|
|
*
|
|
* @example
|
|
* xorBy([1.2, 2.3], [3.4, 4.5], [5.6, 6.7], Math.floor);
|
|
* // => [1.2, 3.4, 5.6]
|
|
*/
|
|
declare function xorBy<T>(arrays: ArrayLike<T> | null | undefined, arrays2: ArrayLike<T> | null | undefined, arrays3: ArrayLike<T> | null | undefined, ...iteratee: Array<ValueIteratee<T> | ArrayLike<T> | null | undefined>): T[];
|
|
|
|
export { xorBy };
|