[Source]
# File resolv.rb, line 926 def initialize(string) @string = string @downcase = string.downcase end
# File resolv.rb, line 940 def ==(other) return @downcase == other.downcase end
# File resolv.rb, line 944 def eql?(other) return self == other end
# File resolv.rb, line 948 def hash return @downcase.hash end
# File resolv.rb, line 936 def inspect return "#<#{self.class} #{self.to_s}>" end
# File resolv.rb, line 932 def to_s return @string end
[Validate]