| 54 | |
| 55 | byte operator[] (word32 i) { current_ = i; return next(); } |
| 56 | byte next() { if (IsLeft(1)) return buffer_[current_++]; else return 0; } |
| 57 | byte prev() { if (current_) return buffer_[--current_]; else return 0; } |
| 58 | |
| 59 | void add(const byte* data, word32 len) |
no outgoing calls
no test coverage detected