Retrieve list of registered function descriptors. This includes both static and lazy functions.
| 111 | // Retrieve list of registered function descriptors. This includes both |
| 112 | // static and lazy functions. |
| 113 | absl::node_hash_map<std::string, std::vector<const cel::FunctionDescriptor*>> |
| 114 | ListFunctions() const { |
| 115 | return modern_registry_.ListFunctions(); |
| 116 | } |
| 117 | |
| 118 | // cel internal accessor for returning backing modern registry. |
| 119 | // |