MCPcopy Create free account
hub / github.com/apache/nifi-minifi-cpp / expr_plus

Function expr_plus

extensions/expression-language/Expression.cpp:876–878  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

874}
875
876Value expr_plus(const std::vector<Value> &args) {
877 return expr_binary_op(args, [](long double a, long double b) {return a + b;}, [](int64_t a, int64_t b) {return a + b;});
878}
879
880Value expr_minus(const std::vector<Value> &args) {
881 return expr_binary_op(args, [](long double a, long double b) {return a - b;}, [](int64_t a, int64_t b) {return a - b;});

Callers

nothing calls this directly

Calls 1

expr_binary_opFunction · 0.85

Tested by

no test coverage detected