[Source]
# File resolv.rb, line 936 def initialize(string) @string = string @downcase = string.downcase end
# File resolv.rb, line 950 def ==(other) return @downcase == other.downcase end
# File resolv.rb, line 954 def eql?(other) return self == other end
# File resolv.rb, line 958 def hash return @downcase.hash end
# File resolv.rb, line 946 def inspect return "#<#{self.class} #{self.to_s}>" end
# File resolv.rb, line 942 def to_s return @string end
[Validate]