| 25 | } |
| 26 | |
| 27 | trait BitReadExt { |
| 28 | fn next_bit(&mut self) -> io::Result<Option<bool>>; |
| 29 | } |
| 30 | |
| 31 | impl<R: BitRead> BitReadExt for R { |
| 32 | fn next_bit(&mut self) -> io::Result<Option<bool>> { |
nothing calls this directly
no outgoing calls
no test coverage detected