SetSeqs sets two sequences to be compared.
(a, b []string)
| 109 | |
| 110 | // SetSeqs sets two sequences to be compared. |
| 111 | func (m *SequenceMatcher) SetSeqs(a, b []string) { |
| 112 | m.SetSeq1(a) |
| 113 | m.SetSeq2(b) |
| 114 | } |
| 115 | |
| 116 | // SetSeq1 sets the first sequence to be compared. The second sequence to be compared is |
| 117 | // not changed. |
no test coverage detected