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

Function RegisterSetsContainsFunction

extensions/sets_functions.cc:99–107  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

97}
98
99absl::Status RegisterSetsContainsFunction(FunctionRegistry& registry) {
100 return registry.Register(
101 BinaryFunctionAdapter<
102 absl::StatusOr<Value>, const ListValue&,
103 const ListValue&>::CreateDescriptor("sets.contains",
104 /*receiver_style=*/false),
105 BinaryFunctionAdapter<absl::StatusOr<Value>, const ListValue&,
106 const ListValue&>::WrapFunction(SetsContains));
107}
108
109absl::Status RegisterSetsIntersectsFunction(FunctionRegistry& registry) {
110 return registry.Register(

Callers 1

RegisterSetsFunctionsFunction · 0.85

Calls 2

CreateDescriptorFunction · 0.85
RegisterMethod · 0.45

Tested by

no test coverage detected