Identical to getField, but add lengthBits to readIndex.
| 341 | |
| 342 | // Identical to getField, but add lengthBits to readIndex. |
| 343 | uint64_t readField(size_t& readIndex, unsigned lengthBits) const { |
| 344 | uint64_t result = getField(readIndex,lengthBits); |
| 345 | readIndex += lengthBits; |
| 346 | return result; |
| 347 | } |
| 348 | |
| 349 | void appendField(uint64_t value,unsigned lengthBits); |
| 350 | // This works for Field<> data types. |
no outgoing calls
no test coverage detected