MCPcopy Create free account
hub / github.com/cel-expr/cel-cpp / Next

Method Next

common/value.h:2822–2833  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2820using ValueIteratorPtr = std::unique_ptr<ValueIterator>;
2821
2822inline absl::StatusOr<Value> ValueIterator::Next(
2823 const google::protobuf::DescriptorPool* absl_nonnull descriptor_pool,
2824 google::protobuf::MessageFactory* absl_nonnull message_factory,
2825 google::protobuf::Arena* absl_nonnull arena) {
2826 ABSL_DCHECK(descriptor_pool != nullptr);
2827 ABSL_DCHECK(message_factory != nullptr);
2828 ABSL_DCHECK(arena != nullptr);
2829
2830 Value result;
2831 CEL_RETURN_IF_ERROR(Next(descriptor_pool, message_factory, arena, &result));
2832 return result;
2833}
2834
2835inline absl::StatusOr<absl::optional<Value>> ValueIterator::Next1(
2836 const google::protobuf::DescriptorPool* absl_nonnull descriptor_pool,

Callers 1

TEST_FFunction · 0.45

Calls

no outgoing calls

Tested by 1

TEST_FFunction · 0.36