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

Method is_dynamic

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

Source from the content-addressed store, hash-verified

1574}
1575
1576bool Expression::is_dynamic() const {
1577 if (val_fn_) {
1578 return true;
1579 } else {
1580 return false;
1581 }
1582}
1583
1584Expression Expression::operator+(const Expression &other_expr) const {
1585 if (is_dynamic() && other_expr.is_dynamic()) {

Callers 1

operator+Method · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected