Module: SetFuMixinBinaryProperOperator

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

Instance Method Summary collapse

Instance Method Details

#<(item) ⇒ Object



959
960
961
962
963
# File 'lib/setfu.rb', line 959

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