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

Function RegisterSetsIntersectsFunction

extensions/sets_functions.cc:109–117  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

107}
108
109absl::Status RegisterSetsIntersectsFunction(FunctionRegistry& registry) {
110 return registry.Register(
111 BinaryFunctionAdapter<
112 absl::StatusOr<Value>, const ListValue&,
113 const ListValue&>::CreateDescriptor("sets.intersects",
114 /*receiver_style=*/false),
115 BinaryFunctionAdapter<absl::StatusOr<Value>, const ListValue&,
116 const ListValue&>::WrapFunction(SetsIntersects));
117}
118
119absl::Status RegisterSetsEquivalentFunction(FunctionRegistry& registry) {
120 return registry.Register(

Callers 1

RegisterSetsFunctionsFunction · 0.85

Calls 2

CreateDescriptorFunction · 0.85
RegisterMethod · 0.45

Tested by

no test coverage detected