Module: SetFuMixinBinaryXorOperator

Included in:
Array, Range, String
Defined in:
lib/setfu.rb

Instance Method Summary collapse

Instance Method Details

#^(item) ⇒ Object



371
372
373
374
375
# File 'lib/setfu.rb', line 371

def ^(item)
  a = Set.new(self)
  b = Set.new(item)
  return a ^ b
end