Module: SetFuMixinBinarySubtractOperator
Instance Method Summary collapse
Instance Method Details
#-(item) ⇒ Object
403 404 405 406 407 |
# File 'lib/setfu.rb', line 403 def -(item) a = Set.new(self) b = Set.new(item) return a - b end |