Match searches the routing tree for a handler that matches the method/path - similar to routing a http request, but without executing the handler thereafter.
(rctx *Context, method, path string)
| 126 | // the method/path - similar to routing a http request, but without |
| 127 | // executing the handler thereafter. |
| 128 | Match(rctx *Context, method, path string) bool |
| 129 | |
| 130 | // Find searches the routing tree for the pattern that matches |
| 131 | // the method/path. |
no outgoing calls