type github.com/golang/mock/gomock.Matcher

22 uses

	github.com/golang/mock/gomock (current package)
		call.go#L31: 	args       []Matcher    // the args
		call.go#L53: 	mArgs := make([]Matcher, len(args))
		call.go#L55: 		if m, ok := arg.(Matcher); ok {
		call.go#L439: func formatGottenArg(m Matcher, arg interface{}) string {
		matchers.go#L25: type Matcher interface {
		matchers.go#L36: func WantFormatter(s fmt.Stringer, m Matcher) Matcher {
		matchers.go#L80: func GotFormatterAdapter(s GotFormatter, m Matcher) Matcher {
		matchers.go#L83: 		Matcher
		matchers.go#L148: 	m Matcher
		matchers.go#L172: 	matchers []Matcher
		matchers.go#L278: func All(ms ...Matcher) Matcher { return allMatcher{ms} }
		matchers.go#L281: func Any() Matcher { return anyMatcher{} }
		matchers.go#L288: func Eq(x interface{}) Matcher { return eqMatcher{x} }
		matchers.go#L292: func Len(i int) Matcher {
		matchers.go#L303: func Nil() Matcher { return nilMatcher{} }
		matchers.go#L310: func Not(x interface{}) Matcher {
		matchers.go#L311: 	if m, ok := x.(Matcher); ok {
		matchers.go#L327: func AssignableToTypeOf(x interface{}) Matcher {
		matchers.go#L339: func InAnyOrder(x interface{}) Matcher {