()
| 25 | } |
| 26 | |
| 27 | func (s seq) String() string { |
| 28 | if s.offset <= 3 { |
| 29 | if s.offset == 0 { |
| 30 | return fmt.Sprint("litLen:", s.litLen, ", matchLen:", s.matchLen+zstdMinMatch, ", offset: INVALID (0)") |
| 31 | } |
| 32 | return fmt.Sprint("litLen:", s.litLen, ", matchLen:", s.matchLen+zstdMinMatch, ", offset:", s.offset, " (repeat)") |
| 33 | } |
| 34 | return fmt.Sprint("litLen:", s.litLen, ", matchLen:", s.matchLen+zstdMinMatch, ", offset:", s.offset-3, " (new)") |
| 35 | } |
| 36 | |
| 37 | type seqCompMode uint8 |
| 38 |
no outgoing calls