(a, b [][]byte)
| 184 | } |
| 185 | |
| 186 | func NewMatcher(a, b [][]byte) *SequenceMatcher { |
| 187 | m := SequenceMatcher{autoJunk: true} |
| 188 | m.SetSeqs(a, b) |
| 189 | return &m |
| 190 | } |
| 191 | |
| 192 | func NewMatcherWithJunk(a, b [][]byte, autoJunk bool, |
| 193 | isJunk func([]byte) bool) *SequenceMatcher { |