diff method

List<V> diff(
  1. List<V> other
)

Elements that you have in this and do not have in other.

Implementation

List<V> diff(List<V> other) => fn.diff<V>(this, other);