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

Method begin

Bcore/src/main/cpp/base/hash_set.h:276–282  ·  view source on GitHub ↗

Lower case for c++11 for each.

Source from the content-addressed store, hash-verified

274
275 // Lower case for c++11 for each.
276 iterator begin() {
277 iterator ret(this, 0);
278 if (num_buckets_ != 0 && IsFreeSlot(ret.index_)) {
279 ++ret; // Skip all the empty slots.
280 }
281 return ret;
282 }
283
284 // Lower case for c++11 for each. const version.
285 const_iterator begin() const {

Callers 10

handleDumpByDexFileFunction · 0.45
redirectPathMethod · 0.45
JoinFunction · 0.45
STLDeleteElementsFunction · 0.45
STLDeleteValuesFunction · 0.45
IndexOfElementFunction · 0.45
RemoveElementFunction · 0.45
ReplaceElementFunction · 0.45
ContainsElementFunction · 0.45
MergeSetsFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected