BLT/include/blt/std/map.h

16 lines
288 B
C
Raw Normal View History

2023-01-16 14:08:28 -05:00
/*
* Created by Brett on 13/01/23.
* Licensed under GNU General Public License V3.0
* See LICENSE file for license detail
*/
#ifndef BLT_TESTS_MAP_H
#define BLT_TESTS_MAP_H
template<typename K, typename V, typename HASH = std::hash<K>>
class hashmap {
2023-01-16 14:08:28 -05:00
};
#endif //BLT_TESTS_MAP_H