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

Method IntValue

libminifi/include/core/state/Value.h:200–204  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

198class IntValue : public Value {
199 public:
200 explicit IntValue(int value)
201 : Value(std::to_string(value)),
202 value(value) {
203 setTypeId<int>();
204 }
205
206 explicit IntValue(const std::string &strvalue)
207 : Value(strvalue) {

Callers

nothing calls this directly

Calls 4

ValueParserClass · 0.85
parseEndMethod · 0.80
to_stringFunction · 0.50
parseMethod · 0.45

Tested by

no test coverage detected