eql?(other)public
No documentation available.
# File actionpack/lib/action_dispatch/http/mime_type.rb, line 297
def eql?(other)
super || (self.class == other.class &&
@string == other.string &&
@synonyms == other.synonyms &&
@symbol == other.symbol)
end