| 135 | } |
| 136 | |
| 137 | inline U32 ByteStreamInArray::getByte() |
| 138 | { |
| 139 | if (curr == size) |
| 140 | { |
| 141 | throw EOF; |
| 142 | } |
| 143 | U32 byte = data[curr]; |
| 144 | curr++; |
| 145 | return byte; |
| 146 | } |
| 147 | |
| 148 | inline void ByteStreamInArray::getBytes(U8* bytes, const I64 num_bytes) |
| 149 | { |
nothing calls this directly
no outgoing calls
no test coverage detected