| 39 | static_cast<char>(current_val % 256) : '\0'; |
| 40 | } |
| 41 | uint64_t get_pos() { |
| 42 | return pos; |
| 43 | } |
| 44 | void seek_to(uint64_t _pos) { |
| 45 | if (pos > _pos || |
| 46 | (iter != parent->seeds.end() && _pos >= iter->first)) { |
no outgoing calls
no test coverage detected