* Reads a Boolean value from the byte stream. A 1-bit integer is read, and true is returned if * the integer is nonzero, false otherwise. */
| 227 | * the integer is nonzero, false otherwise. |
| 228 | */ |
| 229 | bool readBitBoolean() { |
| 230 | return readUBits(1) != 0; |
| 231 | } |
| 232 | |
| 233 | mutable StreamContext* context; |
| 234 |
no outgoing calls
no test coverage detected