Home | History | Annotate | Download | only in experimental

Lines Matching full:__table

154     std::unordered_map<_Key, _Value, _Hash, _BinaryPredicate> __table;
159 : __default_value_(__default), __table(__sz, __hf, __pred) {}
164 __table [__key] = __val; // Would skip_.insert (val) be better here?
170 auto __it = __table.find (__key);
171 return __it == __table.end() ? __default_value_ : __it->second;
185 skip_map __table;
191 std::fill_n(__table.begin(), __table.size(), __default);
197 __table[static_cast<unsigned_key_type>(__key)] = __val;
203 return __table[static_cast<unsigned_key_type>(__key)];