module Roda::RodaPlugins::TypecastParams::DateParseInputHandler

def _string_parse!(klass, v)

Pass input string to date parsing through handle_date_parse_input.
def _string_parse!(klass, v)
  v = handle_date_parse_input(v)
  super
end