module Roda::RodaPlugins::Base::RequestMethods

def _match_class_Integer

integer.
Match integer segment of up to 100 decimal characters, and yield resulting value as an
def _match_class_Integer
  consume(/\A\/(\d{1,100})(?=\/|\z)/, :_convert_class_Integer)
end