& Returns a new array containing each element found in array and array other_array; duplicates are omitted; use eql?
to compare items
intersection Returns a new array containing each element found in self and all given arrays other_arrays; duplicates
are omitted; use eql? to compare items
+ Returns an array containing all elements of self followed by all elements of the given array
- Returns an array containing all elements of self not found in the given array
union Returns an array containing all elements of self and all elements of the given array, with duplicates removed
difference Returns an array containing all elements of self not found in any given array
product self Returns or produces all combinations of elements from self and the given array