Module: SetFuMixinBinarySubtractOperator
Instance Method Summary collapse
Instance Method Details
#-(item) ⇒ Object
684 685 686 687 688 |
# File 'lib/setfu.rb', line 684 def -(item) a = BitSet.new(self) b = BitSet.new(item) return a - b end |