writeMark advances the writer pointer by cnt. This invariant must be kept: 0 <= cnt <= availWrite()
(cnt int)
| 85 | // |
| 86 | // This invariant must be kept: 0 <= cnt <= availWrite() |
| 87 | func (dd *dictDecoder) writeMark(cnt int) { |
| 88 | dd.wrPos += cnt |
| 89 | } |
| 90 | |
| 91 | // writeByte writes a single byte to the dictionary. |
| 92 | // |
no outgoing calls