Skip advances the position by n bits.
(n int)
| 60 | |
| 61 | // Skip advances the position by n bits. |
| 62 | func (r *BitReader) Skip(n int) { |
| 63 | r.pos += n |
| 64 | } |
| 65 | |
| 66 | // BitWriter writes arbitrary numbers of bits to a byte slice. |
| 67 | type BitWriter struct { |
no outgoing calls