module Roda::RodaPlugins::Base::RequestMethods

def _match_array(matcher)

if no elements in the array match.
first match without evaluating future matches. Returns false
Match any of the elements in the given array. Return at the
def _match_array(matcher)
  matcher.any? do |m|
    if matched = match(m)
      if m.is_a?(String)
        @captures.push(m)
      end
    end
    matched
  end
end