The intersection is the set of values that appear in both
require 'set'
primes = Set[2, 3, 5, 7]
odds = Set[1, 3, 5, 7, 9]
p primes & odds # => #<Set: {5, 7, 3}>
p primes.intersection(odds) # this is an explicitly named alias
Related examples in the same category