[Source]
# File resolv.rb, line 869 def initialize(string) @string = string @downcase = string.downcase end
# File resolv.rb, line 875 def to_s return @string end
# File resolv.rb, line 879 def inspect return "#<#{self.class} #{self.to_s}>" end
# File resolv.rb, line 883 def ==(other) return @downcase == other.downcase end
# File resolv.rb, line 887 def eql?(other) return self == other end
# File resolv.rb, line 891 def hash return @downcase.hash end
[Validate]