readBoolean reads and interprets single bit as true or false
()
| 242 | |
| 243 | // readBoolean reads and interprets single bit as true or false |
| 244 | func (r *reader) readBoolean() bool { |
| 245 | return r.readBits(1) == 1 |
| 246 | } |
| 247 | |
| 248 | // readFloat reads an IEEE 754 float |
| 249 | func (r *reader) readFloat() float32 { |
no test coverage detected