Module: SetFuMixinBinaryXorOperator

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

Instance Method Summary collapse

Instance Method Details

#^(item) ⇒ Object



1093
1094
1095
1096
1097
# File 'lib/setfu.rb', line 1093

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