require 'set'primes = Set[2, 3, 5, 7]odds = Set[1, 3, 5, 7, 9]p primes & odds # => #p primes.intersection(odds) # this is an explicitly named alias