| 862 | // or `void(const std::string_view&)`. |
| 863 | template <typename VisitFunc> |
| 864 | void VisitValues(int32_t start, VisitFunc&& visit) const { |
| 865 | for (int32_t i = start; i < size(); ++i) { |
| 866 | visit(binary_builder_.GetView(i)); |
| 867 | } |
| 868 | } |
| 869 | |
| 870 | // Visit the stored value at a specific index in insertion order. |
| 871 | // The visitor function should have the signature `void(std::string_view)` |