Module: SetFuMixinBinaryXorOperator

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

Instance Method Summary collapse

Instance Method Details

#^(item) ⇒ Object



911
912
913
914
915
# File 'lib/setfu.rb', line 911

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