Match returns true if r matches m.
(r *http.Request)
| 308 | |
| 309 | // Match returns true if r matches m. |
| 310 | func (m MatchVarsRE) Match(r *http.Request) bool { |
| 311 | match, _ := m.MatchWithError(r) |
| 312 | return match |
| 313 | } |
| 314 | |
| 315 | // MatchWithError returns true if r matches m. |
| 316 | func (m MatchVarsRE) MatchWithError(r *http.Request) (bool, error) { |
nothing calls this directly
no test coverage detected