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

Function expr_mod

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

Source from the content-addressed store, hash-verified

890}
891
892Value expr_mod(const std::vector<Value> &args) {
893 return expr_binary_op(args, [](long double a, long double b) {return std::fmod(a, b);}, [](int64_t a, int64_t b) {return a % b;});
894}
895
896Value expr_toRadix(const std::vector<Value> &args) {
897 int64_t radix = args[1].asSignedLong();

Callers

nothing calls this directly

Calls 1

expr_binary_opFunction · 0.85

Tested by

no test coverage detected