class ActionDispatch::Journey::Path::Pattern

def match(other)

Experimental RBS support (using type sampling data from the type_fusion project).

def match: (String other) -> ActionDispatch::Journey::Path::Pattern::MatchData

This signature was generated using 2 samples from 1 application.

def match(other)
  return unless match = to_regexp.match(other)
  MatchData.new(names, offsets, match)
end