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

Function lists_macros

extensions/lists_functions.cc:639–649  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

637}
638
639std::vector<Macro> lists_macros(int version) {
640 switch (version) {
641 case 0:
642 return {};
643 case 1:
644 return {};
645 case 2:
646 default:
647 return {ListSortByMacro()};
648 };
649}
650
651absl::Status ConfigureParser(ParserBuilder& builder, int version) {
652 for (const Macro& macro : lists_macros(version)) {

Callers 2

ConfigureParserFunction · 0.85
RegisterListsMacrosFunction · 0.85

Calls 1

ListSortByMacroFunction · 0.85

Tested by

no test coverage detected