availWrite reports the available amount of output buffer space.
()
| 71 | |
| 72 | // availWrite reports the available amount of output buffer space. |
| 73 | func (dd *dictDecoder) availWrite() int { |
| 74 | return len(dd.hist) - dd.wrPos |
| 75 | } |
| 76 | |
| 77 | // writeSlice returns a slice of the available buffer to write data to. |
| 78 | // |
no outgoing calls