MCPcopy Create free account
hub / github.com/Tencent/Hardcoder / InnerMap

Method InnerMap

libapp2sys/prebuilt/include/google/protobuf/map.h:724–733  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

722 typedef value_type* Value;
723
724 InnerMap(size_type n, hasher h, Allocator alloc)
725 : hasher(h),
726 num_elements_(0),
727 seed_(Seed()),
728 table_(NULL),
729 alloc_(alloc) {
730 n = TableSize(n);
731 table_ = CreateEmptyTable(n);
732 num_buckets_ = index_of_first_non_null_ = n;
733 }
734
735 ~InnerMap() {
736 if (table_ != NULL) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected