method
==
==(other)
public
Hide source
# File lib/resolv.rb, line 1164 def ==(other) # :nodoc: return false unless Name === other return @labels.join == other.to_a.join && @absolute == other.absolute? end