patternmatcher
packageThis package is not in the latest version of its module.
Details
Validgo.mod file
The Go module system was introduced in Go 1.11 and is the official dependency management solution for Go.
Redistributable license
Redistributable licenses place minimal restrictions on how software can be used, modified, and redistributed.
Tagged version
Modules with tagged versions give importers more predictable builds.
Stable version
When a project reaches major version v1 it is considered stable.
- Learn more about best practices
Repository
Links
Documentation¶
Index¶
Constants¶
This section is empty.
Variables¶
This section is empty.
Functions¶
This section is empty.
Types¶
typeRoutePatterns¶
type RoutePatterns []string
RoutePatterns provides a method to generate a regex which will match a URLpath against a collection of patterns. If any of the patterns match the path,the regex will return a successful match.
Multiple patterns can be provided and they are matched in order. Example:- /api/* matches /api/1 but not /api or /api/1/2- /api/*/2 matches /api/1/2 but not /api/2 /api/1- /api/** matches /api/1, /api/1/2, /api/1/2/3 but not /api- /api/**/3 matches /api/1/2, /api/1/2/3 but not /api, /api/1 or /api/1/2
All patterns support an optional trailing slash.
func (RoutePatterns)MustCompile¶
func (rpRoutePatterns) MustCompile() *regexp.Regexp