Class: String
Instance Method Summary
collapse
#-
#===, #old_triple_equal4Set
#to_bset
#**
#^
#|
#&
Instance Method Details
#<(item) ⇒ Object
725
726
727
728
729
730
|
# File 'lib/setfu.rb', line 725
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
719
720
721
722
723
724
|
# File 'lib/setfu.rb', line 719
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
708
|
# File 'lib/setfu.rb', line 708
alias_method :old_string_lt4set, :<
|
#old_string_lte4set ⇒ Object
709
|
# File 'lib/setfu.rb', line 709
alias_method :old_string_lte4set, :<=
|