draconisplusplus/include/rfl/parsing/is_map_like_not_multimap.hpp

27 lines
638 B
C++
Raw Normal View History

2024-05-31 22:59:00 -04:00
#ifndef RFL_PARSING_IS_MAP_LIKE_NOT_MULTIMAP_HPP_
#define RFL_PARSING_IS_MAP_LIKE_NOT_MULTIMAP_HPP_
#include <map>
#include <type_traits>
#include <unordered_map>
namespace rfl {
2024-06-08 14:10:59 -04:00
namespace parsing {
2024-05-31 22:59:00 -04:00
2024-06-08 14:10:59 -04:00
template <class T>
class is_map_like_not_multimap;
2024-05-31 22:59:00 -04:00
2024-06-08 14:10:59 -04:00
template <class T>
class is_map_like_not_multimap : public std::false_type {};
2024-05-31 22:59:00 -04:00
2024-06-08 14:10:59 -04:00
template <class K, class V>
class is_map_like_not_multimap<std::map<K, V>> : public std::true_type {};
2024-05-31 22:59:00 -04:00
2024-06-08 14:10:59 -04:00
template <class K, class V>
2024-06-16 00:13:15 -04:00
class is_map_like_not_multimap<std::unordered_map<K, V>> : public std::true_type {};
2024-05-31 22:59:00 -04:00
2024-06-08 14:10:59 -04:00
} // namespace parsing
} // namespace rfl
2024-05-31 22:59:00 -04:00
#endif