overread returns true if more bits have been requested than is on the stream.
()
| 108 | |
| 109 | // overread returns true if more bits have been requested than is on the stream. |
| 110 | func (b *bitReader) overread() bool { |
| 111 | return b.bitsRead > 64 |
| 112 | } |
| 113 | |
| 114 | // remain returns the number of bits remaining. |
| 115 | func (b *bitReader) remain() uint { |
no outgoing calls
no test coverage detected