| 33 | } |
| 34 | |
| 35 | bool DecodeStream::readBoolean() { |
| 36 | if (!checkEndOfFile(1)) { |
| 37 | auto value = dataView.getBoolean(_position); |
| 38 | positionChanged(1); |
| 39 | return value; |
| 40 | } |
| 41 | return false; |
| 42 | } |
| 43 | |
| 44 | int8_t DecodeStream::readInt8() { |
| 45 | if (!checkEndOfFile(1)) { |
no outgoing calls
no test coverage detected