memgraph/src/data_structures/concurrent/concurrent_map.hpp

10 lines
187 B
C++
Raw Normal View History

#pragma once
#include "data_structures/skiplist/skiplist_map.hpp"
template<class K, class T>
class ConcurrentMap : public SkipListMap<K, T>
{
// TODO implement with SkipList
};