| 1020 | size_t Size() const override { return map_.size(); } |
| 1021 | |
| 1022 | absl::Status ListKeys( |
| 1023 | const google::protobuf::DescriptorPool* absl_nonnull descriptor_pool, |
| 1024 | google::protobuf::MessageFactory* absl_nonnull message_factory, |
| 1025 | google::protobuf::Arena* absl_nonnull arena, |
| 1026 | ListValue* absl_nonnull result) const override { |
| 1027 | *result = CustomListValue(ProjectKeys(), map_.get_allocator().arena()); |
| 1028 | return absl::OkStatus(); |
| 1029 | } |
| 1030 | |
| 1031 | absl::Status ForEach( |
| 1032 | ForEachCallback callback, |
nothing calls this directly
no test coverage detected