module Roda::RodaPlugins::RenderEach::InstanceMethods

def _cached_render_each_template_method(template)

been explicitly disabled. Otherwise return nil.
a string or symbol, or if compiled method support for this template has
method name to call to render the template. Return false if not given
If compiled method support is enabled in the render plugin, return the
def _cached_render_each_template_method(template)
  case template
  when String, Symbol
    if (method_cache = render_opts[:template_method_cache])
      _cached_template_method_lookup(method_cache, [:_render_locals, template, [template.to_sym]])
    end
  else
    false
  end
end