* The number of bytes of data available for reading from the current position in the byte array to the end of * the array. */
| 38 | * the array. |
| 39 | */ |
| 40 | size_t bytesAvailable() const { |
| 41 | return dataView.size() - _position; |
| 42 | } |
| 43 | |
| 44 | bool empty() const { |
| 45 | return dataView.isEmpty(); |
no test coverage detected