Module: SetFuMixinBinaryXorOperator
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 |