global

def each

MIME::Types#each against the default MIME::Types registry.
def each
  if block_given?
    __types__.each { |t| yield t }
  else
    enum_for(:each)
  end
end