| 99 | } |
| 100 | |
| 101 | absl::StatusOr<Value> Replace1( |
| 102 | const StringValue& string, const StringValue& old_sub, |
| 103 | const StringValue& new_sub, |
| 104 | const google::protobuf::DescriptorPool* absl_nonnull descriptor_pool, |
| 105 | google::protobuf::MessageFactory* absl_nonnull message_factory, |
| 106 | google::protobuf::Arena* absl_nonnull arena) { |
| 107 | return string.Replace(old_sub, new_sub, -1, arena); |
| 108 | } |
| 109 | |
| 110 | Value CharAt(const StringValue& string, int64_t pos) { |
| 111 | return string.CharAt(pos); |