MCPcopy Create free account
hub / github.com/alibaba/PhotonLibOS / insert

Method insert

common/unordered_inline_set.h:456–459  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

454public:
455 template< class InputIt >
456 void insert( InputIt first, InputIt last ) {
457 for (auto it = first; it != last; ++it)
458 insert(*it);
459 }
460 void insert( std::initializer_list<value_type> ilist ) {
461 insert(ilist.begin(), ilist.end());
462 }

Callers

nothing calls this directly

Calls 3

beginMethod · 0.45
endMethod · 0.45
setMethod · 0.45

Tested by

no test coverage detected