Class: String
Instance Method Summary
collapse
#-
#===, #old_triple_equal4Set
#to_bset
#**
#^
#|
#&
Instance Method Details
#<(item) ⇒ Object
706
707
708
709
710
711
|
# File 'lib/setfu.rb', line 706
def <(item)
return old_string_lt4set(item) if (item.class==String)
a = BitSet.new(self)
b = BitSet.new(item)
return a < b
end
|
#<=(item) ⇒ Object
700
701
702
703
704
705
|
# File 'lib/setfu.rb', line 700
def <=(item)
return old_string_lte4set(item) if (item.class==String)
a = BitSet.new(self)
b = BitSet.new(item)
return a <= b
end
|
#old_string_lt4set ⇒ Object
689
|
# File 'lib/setfu.rb', line 689
alias_method :old_string_lt4set, :<
|
#old_string_lte4set ⇒ Object
690
|
# File 'lib/setfu.rb', line 690
alias_method :old_string_lte4set, :<=
|