| 74 | } |
| 75 | |
| 76 | absl::StatusOr<Value> Split3( |
| 77 | const StringValue& string, const StringValue& delimiter, int64_t limit, |
| 78 | const google::protobuf::DescriptorPool* absl_nonnull descriptor_pool, |
| 79 | google::protobuf::MessageFactory* absl_nonnull message_factory, |
| 80 | google::protobuf::Arena* absl_nonnull arena) { |
| 81 | return string.Split(delimiter, limit, arena); |
| 82 | } |
| 83 | |
| 84 | absl::StatusOr<Value> Split2( |
| 85 | const StringValue& string, const StringValue& delimiter, |