type github.com/andybalholm/brotli/matchfinder.Match

27 uses

	github.com/andybalholm/brotli/matchfinder (current package)
		emitter.go#L21: 	Dst []Match
		emitter.go#L28: 	e.Dst = append(e.Dst, Match{
		m0.go#L40: func (m M0) FindMatches(dst []Match, src []byte) []Match {
		m0.go#L45: 		dst = append(dst, Match{
		m0.go#L135: 		dst = append(dst, Match{
		m0.go#L164: 		dst = append(dst, Match{
		m4.go#L63: func (q *M4) FindMatches(dst []Match, src []byte) []Match {
		m4.go#L276: 		dst = append(dst, Match{
		matchfinder.go#L16: type Match struct {
		matchfinder.go#L25: 	FindMatches(dst []Match, src []byte) []Match
		matchfinder.go#L36: 	Encode(dst []byte, src []byte, matches []Match, lastBlock bool) []byte
		matchfinder.go#L56: 	matches []Match
		pathfinder.go#L42: 	matches      []Match
		pathfinder.go#L67: func (q *Pathfinder) FindMatches(dst []Match, src []byte) []Match {
		pathfinder.go#L310: 			matches = append(matches, Match{
		pathfinder.go#L317: 				matches = append(matches, Match{})
		textencoder.go#L11: func (t TextEncoder) Encode(dst []byte, src []byte, matches []Match, lastBlock bool) []byte {
		textencoder.go#L36: func (n NoMatchFinder) FindMatches(dst []Match, src []byte) []Match {
		textencoder.go#L37: 	return append(dst, Match{
		textencoder.go#L50: func (a AutoReset) FindMatches(dst []Match, src []byte) []Match {

	github.com/andybalholm/brotli
		encoder.go#L17: func (e *Encoder) Encode(dst []byte, src []byte, matches []matchfinder.Match, lastBlock bool) []byte {