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

Method insert

libCacheSim/dataStructure/sparsepp/spp.h:3224–3228  ·  view source on GitHub ↗

This is the normal insert routine, used by the outside world

Source from the content-addressed store, hash-verified

3222
3223 // This is the normal insert routine, used by the outside world
3224 std::pair<iterator, bool> insert(const_reference obj)
3225 {
3226 _resize_delta(1); // adding an object, grow if need be
3227 return _insert_noresize(obj);
3228 }
3229
3230#if !defined(SPP_NO_CXX11_RVALUE_REFERENCES)
3231 template< class P >

Callers 6

sparse_hash_mapMethod · 0.45
sparse_hash_mapClass · 0.45
insertMethod · 0.45
sparse_hash_setMethod · 0.45
sparse_hash_setClass · 0.45
insertMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected