class Protocol::HTTP::Headers
def == other
Compare this object to another object. May depend on the order of the fields.
def == other case other when Hash to_h == other when Headers @fields == other.fields else @fields == other end end
def == other case other when Hash to_h == other when Headers @fields == other.fields else @fields == other end end