• This method is like _.pullAll except that it accepts comparator which is invoked to compare elements of array to values. The comparator is invoked with two arguments: (arrVal, othVal).

    Note: Unlike _.differenceWith, this method mutates array.

    Type Parameters

    • T

    Parameters

    • array: T[]

      The array to modify.

    • Optional values: List<T>

      The values to remove.

    • Optional comparator: Comparator<T>

    Returns T[]

    Returns array.

    Example

    var array = [{ 'x': 1, 'y': 2 }, { 'x': 3, 'y': 4 }, { 'x': 5, 'y': 6 }];

    _.pullAllWith(array, [{ 'x': 3, 'y': 4 }], _.isEqual);
    console.log(array);
    // => [{ 'x': 1, 'y': 2 }, { 'x': 5, 'y': 6 }]
  • Type Parameters

    • T

    Parameters

    • array: List<T>
    • Optional values: List<T>
    • Optional comparator: Comparator<T>

    Returns List<T>

    See

    _.pullAllWith

  • Type Parameters

    • T1

    • T2

    Parameters

    • array: T1[]
    • values: List<T2>
    • comparator: Comparator2<T1, T2>

    Returns T1[]

    See

    _.pullAllWith

  • Type Parameters

    • T1

    • T2

    Parameters

    • array: List<T1>
    • values: List<T2>
    • comparator: Comparator2<T1, T2>

    Returns List<T1>

    See

    _.pullAllWith

Generated using TypeDoc