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

Method Contains

common/value.h:2650–2663  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2648
2649template <typename Base>
2650absl::StatusOr<Value> ListValueMixin<Base>::Contains(
2651 const Value& other,
2652 const google::protobuf::DescriptorPool* absl_nonnull descriptor_pool,
2653 google::protobuf::MessageFactory* absl_nonnull message_factory,
2654 google::protobuf::Arena* absl_nonnull arena) const {
2655 ABSL_DCHECK(descriptor_pool != nullptr);
2656 ABSL_DCHECK(message_factory != nullptr);
2657 ABSL_DCHECK(arena != nullptr);
2658
2659 Value result;
2660 CEL_RETURN_IF_ERROR(static_cast<const Base*>(this)->Contains(
2661 other, descriptor_pool, message_factory, arena, &result));
2662 return result;
2663}
2664
2665template <typename Base>
2666absl::StatusOr<Value> MapValueMixin<Base>::Get(

Callers 3

EvaluateInFunction · 0.45
HeterogeneousEqualityInFunction · 0.45
StringContainsFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected