1: class Array 2: def union(another) 3: self | another 4: end 5: def intersection(another) 6: self & another 7: end 8: end