MCPcopy Create free account
hub / github.com/1a1a11a/libCacheSim / insert

Method insert

libCacheSim/dataStructure/robin_hood.h:1782–1787  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1780
1781 template <typename Iter>
1782 void insert(Iter first, Iter last) {
1783 for (; first != last; ++first) {
1784 // value_type ctor needed because this might be called with std::pair's
1785 insert(value_type(*first));
1786 }
1787 }
1788
1789 void insert(std::initializer_list<value_type> ilist) {
1790 for (auto&& vt : ilist) {

Callers

nothing calls this directly

Calls 2

insertFunction · 0.85
emplaceFunction · 0.85

Tested by

no test coverage detected