Module: SetFuMixinBinarySubtractOperator

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

Instance Method Summary collapse

Instance Method Details

#-(item) ⇒ Object



1125
1126
1127
1128
1129
# File 'lib/setfu.rb', line 1125

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