class String

Public Instance Methods

<(item) click to toggle source
# File lib/setfu.rb, line 1166
def <(item)
  return old_string_lt4set(item) if (item.type_of? String)
  a = BitSet.new(self)
  b = BitSet.new(item)
  return a < b
end
Also aliased as: old_string_lt4set
<=(item) click to toggle source
# File lib/setfu.rb, line 1160
def <=(item)
  return old_string_lte4set(item) if (item.type_of? String)
  a = BitSet.new(self)
  b = BitSet.new(item)
  return a <= b
end
Also aliased as: old_string_lte4set
old_string_lt4set(item)
Alias for: <
old_string_lte4set(item)
Alias for: <=