MatcherFunc ---------------------------------------------------------------- MatcherFunc is the function signature used by custom matchers.
func(*http.Request, *RouteMatch) bool
| 309 | |
| 310 | // MatcherFunc is the function signature used by custom matchers. |
| 311 | type MatcherFunc func(*http.Request, *RouteMatch) bool |
| 312 | |
| 313 | // Match returns the match for a given request. |
| 314 | func (m MatcherFunc) Match(r *http.Request, match *RouteMatch) bool { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…