| 12991 | } |
| 12992 | |
| 12993 | void push_back(std::string_view segment, source_position b, source_position e) |
| 12994 | { |
| 12995 | segments.push_back({ buffer.length(), segment.length() }); |
| 12996 | buffer.append(segment); |
| 12997 | starts.push_back(b); |
| 12998 | ends.push_back(e); |
| 12999 | } |
| 13000 | |
| 13001 | TOML_PURE_INLINE_GETTER |
| 13002 | std::string_view operator[](size_t i) const noexcept |
no test coverage detected