Module: SetFuMixinBinaryXorOperator

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

Instance Method Summary collapse

Instance Method Details

#^(item) ⇒ Object



652
653
654
655
656
# File 'lib/setfu.rb', line 652

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