Class: String
Instance Method Summary
collapse
#-
#===, #old_triple_equal4Set
#to_bset
#**
#^
#|
#&
Instance Method Details
984
985
986
987
988
989
|
# File 'lib/setfu.rb', line 984
def <(item)
return old_string_lt4set(item) if (item.type_of? String)
a = BitSet.new(self)
b = BitSet.new(item)
return a < b
end
|
978
979
980
981
982
983
|
# File 'lib/setfu.rb', line 978
def <=(item)
return old_string_lte4set(item) if (item.type_of? String)
a = BitSet.new(self)
b = BitSet.new(item)
return a <= b
end
|
#old_string_lt4set ⇒ Object
967
|
# File 'lib/setfu.rb', line 967
alias_method :old_string_lt4set, :<
|
#old_string_lte4set ⇒ Object
968
|
# File 'lib/setfu.rb', line 968
alias_method :old_string_lte4set, :<=
|