intersection method

List intersection(
  1. List values
)

intersection Creates an array of unique values that are included in all given arrays @param values the list to compare against

Implementation

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