Module: SetFuMixinBinarySubtractOperator
Instance Method Summary collapse
Instance Method Details
#-(item) ⇒ Object
582 583 584 585 586 |
# File 'lib/setfu.rb', line 582 def -(item) a = Set.new(self) b = Set.new(item) return a - b end |