MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / MergeSets

Function MergeSets

Bcore/src/main/cpp/base/stl_util.h:141–143  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

139// Merge `other` entries into `to_update`.
140template <typename T>
141static inline void MergeSets(std::set<T>& to_update, const std::set<T>& other) {
142 to_update.insert(other.begin(), other.end());
143}
144
145// Returns a copy of the passed vector that doesn't memory-own its entries.
146template <typename T>

Callers

nothing calls this directly

Calls 3

insertMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected