differenceBy method

List differenceBy(
  1. List values,
  2. Function iteratee
)

differenceBy for returning the values in the list that are not in the other

  • using a function to determine equality @param array the list to compare against @param iteratee the function to determine equality @returns the values in the list that are not in the other

Implementation

List differenceBy(List values, Function iteratee) =>
    array.differenceBy(this, values, iteratee);