| 1184 | size_t Size() const override { return map_.size(); } |
| 1185 | |
| 1186 | absl::Status ListKeys( |
| 1187 | const google::protobuf::DescriptorPool* absl_nonnull descriptor_pool, |
| 1188 | google::protobuf::MessageFactory* absl_nonnull message_factory, |
| 1189 | google::protobuf::Arena* absl_nonnull arena, |
| 1190 | ListValue* absl_nonnull result) const override { |
| 1191 | *result = CustomListValue(ProjectKeys(), map_.get_allocator().arena()); |
| 1192 | return absl::OkStatus(); |
| 1193 | } |
| 1194 | |
| 1195 | absl::Status ForEach( |
| 1196 | ForEachCallback callback, |
nothing calls this directly
no test coverage detected