Set two sequences to be compared.
(a, b []string)
| 116 | |
| 117 | // Set two sequences to be compared. |
| 118 | func (m *SequenceMatcher) SetSeqs(a, b []string) { |
| 119 | m.SetSeq1(a) |
| 120 | m.SetSeq2(b) |
| 121 | } |
| 122 | |
| 123 | // Set the first sequence to be compared. The second sequence to be compared is |
| 124 | // not changed. |
no test coverage detected