# Functions

AllOf creates a new AndMatcher with m.
AnyOf creates a new OrMatcher with m.
HasEscapedPathPrefix matches the URL u if u.EscapedPath() starts with prefix.
HasEscapedPathRegexp matches the URL u if u.EscapedPath() matches the provided Regexp re.
HasHost matches the URL u if u.Host is equal to host.
HasHostname matches the URL u if u.Hostname() is equal to hostname.
HasHostnameSuffix matches the URL u if u.Hostname() ends with suffix.
HasRawQueryRegexp matches the URL u if u.RawQuery matches the provided Regexp re.
HasScheme matches the URL u if u.Scheme is equal to scheme.
Not returns a Matcher that negates m.

# Structs

NotMatcher negates the Matcher M.

# Interfaces

Matcher checks whether the given URL meets condition(s).

# Type aliases

AndMatcher matches the URL u if u matches all of the given Matchers.
MatcherFunc turns an ordinary function into a Matcher.
OrMatcher matches the URL u if u matches at least one of the given Matchers.