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

Function RegisterStandardFunctions

runtime/standard_functions.cc:34–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32namespace cel {
33
34absl::Status RegisterStandardFunctions(FunctionRegistry& registry,
35 const RuntimeOptions& options) {
36 CEL_RETURN_IF_ERROR(RegisterArithmeticFunctions(registry, options));
37 CEL_RETURN_IF_ERROR(RegisterComparisonFunctions(registry, options));
38 CEL_RETURN_IF_ERROR(RegisterContainerFunctions(registry, options));
39 CEL_RETURN_IF_ERROR(RegisterContainerMembershipFunctions(registry, options));
40 CEL_RETURN_IF_ERROR(RegisterLogicalFunctions(registry, options));
41 CEL_RETURN_IF_ERROR(RegisterRegexFunctions(registry, options));
42 CEL_RETURN_IF_ERROR(RegisterStringFunctions(registry, options));
43 CEL_RETURN_IF_ERROR(RegisterTimeFunctions(registry, options));
44 CEL_RETURN_IF_ERROR(RegisterEqualityFunctions(registry, options));
45
46 return RegisterTypeConversionFunctions(registry, options);
47}
48
49} // namespace cel

Callers 5

SetUpMethod · 0.85
SetUpMethod · 0.85
CreateRuntimeBuilderMethod · 0.85

Tested by 3

SetUpMethod · 0.68
SetUpMethod · 0.68