| 50 | const byte* get_buffer() const { return buffer_.get_buffer(); } |
| 51 | const byte* get_current() const { return &buffer_[current_]; } |
| 52 | word32 get_index() const { return current_; } |
| 53 | void set_index(word32 i) { if (i < size()) current_ = i; } |
| 54 | |
| 55 | byte operator[] (word32 i) { current_ = i; return next(); } |
no outgoing calls
no test coverage detected