| 66 | } |
| 67 | |
| 68 | absl::StatusOr<Value> Join1( |
| 69 | const ListValue& value, |
| 70 | const google::protobuf::DescriptorPool* absl_nonnull descriptor_pool, |
| 71 | google::protobuf::MessageFactory* absl_nonnull message_factory, |
| 72 | google::protobuf::Arena* absl_nonnull arena) { |
| 73 | return StringValue().Join(value, descriptor_pool, message_factory, arena); |
| 74 | } |
| 75 | |
| 76 | absl::StatusOr<Value> Split3( |
| 77 | const StringValue& string, const StringValue& delimiter, int64_t limit, |
nothing calls this directly
no test coverage detected