Lines Matching refs:map_
61 MapKVStore(const MapKVStore& other) : KVStore(), map_(other.map_) {}
65 std::unordered_map<std::string, std::string> map_;
233 auto it = map_.find(key);
234 return it == map_.end() ? Nothing<std::string>() : Just(it->second);
251 map_[std::string(*key_str, key_str.length())] =
258 return map_.find(key) == map_.end() ? -1 : 0;
269 map_.erase(std::string(*str, str.length()));
275 values.reserve(map_.size());
276 for (const auto& pair : map_) {