class HTTP::Headers

def ==(other)

Returns:
  • (Boolean) -
def ==(other)
  return false unless other.respond_to? :to_a
  @pile == other.to_a
end