module Roda::RodaPlugins::MatchHookArgs::RequestMethods

def if_match(v)

Call the match hook with matchers and block args if yielding to the block before yielding to the block.
def if_match(v)
  super do |*a|
    scope._match_hook_args(v, a)
    yield(*a)
  end
end