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

Function expr_multiply

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

Source from the content-addressed store, hash-verified

882}
883
884Value expr_multiply(const std::vector<Value> &args) {
885 return expr_binary_op(args, [](long double a, long double b) {return a * b;}, [](int64_t a, int64_t b) {return a * b;});
886}
887
888Value expr_divide(const std::vector<Value> &args) {
889 return expr_binary_op(args, [](long double a, long double b) {return a / b;}, [](int64_t a, int64_t b) {return a / b;}, true);

Callers

nothing calls this directly

Calls 1

expr_binary_opFunction · 0.85

Tested by

no test coverage detected