MCPcopy Create free account
hub / github.com/NativeScript/android / insert

Method insert

test-app/runtime/src/main/cpp/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 15

addTaskMethod · 0.45
removeTaskMethod · 0.45
ResolveModuleCallbackFunction · 0.45
FillPrototypeMethodMethod · 0.45
FillPrototypeFieldMethod · 0.45
FillPrototypePropertyMethod · 0.45
JSObjectWeakCallbackMethod · 0.45
ReleaseJSInstanceMethod · 0.45
getPageResourcesMethod · 0.45
createConsoleMethod · 0.45
timeCallbackMethod · 0.45

Calls 2

value_typeClass · 0.85
emplaceFunction · 0.50

Tested by

no test coverage detected