Module: SetFuMixinBinarySubtractOperator

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

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