difference method

List difference(
  1. List values
)

difference for returning the values in the list that are not in the other @param array the list to compare against @returns the values in the list that are not in the other

Implementation

List difference(List values) => array.difference(this, values);