MCPcopy Create free account
hub / github.com/bitcoin/bitcoin / insert

Function insert

src/util/insert.h:14–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12//! Simplification of std insertion
13template <typename Tdst, typename Tsrc>
14inline void insert(Tdst& dst, const Tsrc& src) {
15 dst.insert(dst.begin(), src.begin(), src.end());
16}
17template <typename TsetT, typename Tsrc>
18inline void insert(std::set<TsetT>& dst, const Tsrc& src) {
19 dst.insert(src.begin(), src.end());

Callers 7

InsertInputsMethod · 0.85
AppendDataSizeMethod · 0.85
AppendDataMethod · 0.85
CScriptClass · 0.85
insertMethod · 0.85
IsRelevantAndUpdateMethod · 0.85
emplaceMethod · 0.85

Calls 3

insertMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected