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

Function insert

src/util/system.h:523–525  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

521//! Simplification of std insertion
522template <typename Tdst, typename Tsrc>
523inline void insert(Tdst& dst, const Tsrc& src) {
524 dst.insert(dst.begin(), src.begin(), src.end());
525}
526template <typename TsetT, typename Tsrc>
527inline void insert(std::set<TsetT>& dst, const Tsrc& src) {
528 dst.insert(src.begin(), src.end());

Callers 4

AddInputMethod · 0.85
CScriptClass · 0.85
insertMethod · 0.85
IsRelevantAndUpdateMethod · 0.85

Calls 3

insertMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected