# File lib/puppet/network/format.rb, line 72
72:     def render_multiple(instances)
73:         # This method implicitly assumes that all instances are of the same type.
74:         return instances[0].class.send(render_multiple_method, instances) if instances[0].class.respond_to?(render_multiple_method)
75:         raise NotImplementedError, "%s does not respond to %s; can not intern multiple instances to %s" % [instances[0].class, render_multiple_method, mime]
76:     end