MCPcopy Create free account
hub / github.com/ElementsProject/elements / push_backV

Method push_backV

src/univalue/lib/univalue.cpp:117–125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

115}
116
117bool UniValue::push_backV(const std::vector<UniValue>& vec)
118{
119 if (typ != VARR)
120 return false;
121
122 values.insert(values.end(), vec.begin(), vec.end());
123
124 return true;
125}
126
127void UniValue::__pushKV(const std::string& key, const UniValue& val_)
128{

Callers 3

listtransactionsFunction · 0.80
BOOST_AUTO_TEST_CASEFunction · 0.80

Calls 3

insertMethod · 0.45
endMethod · 0.45
beginMethod · 0.45

Tested by 1

BOOST_AUTO_TEST_CASEFunction · 0.64