Module: SetFuMixinBinaryProperOperator

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

Instance Method Summary collapse

Instance Method Details

#<(item) ⇒ Object



419
420
421
422
423
# File 'lib/setfu.rb', line 419

def <(item)
  a = Set.new(self)
  b = Set.new(item)
  return a < b
end