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

Function RegisterSetsEquivalentFunction

extensions/sets_functions.cc:119–127  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

117}
118
119absl::Status RegisterSetsEquivalentFunction(FunctionRegistry& registry) {
120 return registry.Register(
121 BinaryFunctionAdapter<
122 absl::StatusOr<Value>, const ListValue&,
123 const ListValue&>::CreateDescriptor("sets.equivalent",
124 /*receiver_style=*/false),
125 BinaryFunctionAdapter<absl::StatusOr<Value>, const ListValue&,
126 const ListValue&>::WrapFunction(SetsEquivalent));
127}
128
129absl::Status RegisterSetsDecls(TypeCheckerBuilder& b) {
130 ListType list_t(b.arena(), TypeParamType("T"));

Callers 1

RegisterSetsFunctionsFunction · 0.85

Calls 2

CreateDescriptorFunction · 0.85
RegisterMethod · 0.45

Tested by

no test coverage detected