AK: Add Traits for Enums

Enums can be hashed as their underlying integral type. This allows enum
keys in hash maps etc.
This commit is contained in:
kleines Filmröllchen 2021-08-19 14:46:05 +02:00 committed by Ali Mohammad Pur
parent 22b836dd7b
commit f99e6507ee

View file

@ -6,6 +6,7 @@
#pragma once
#include <AK/Concepts.h>
#include <AK/Forward.h>
#include <AK/HashFunctions.h>
@ -41,6 +42,12 @@ requires(IsPointer<T>) struct Traits<T> : public GenericTraits<T> {
static constexpr bool is_trivial() { return true; }
};
template<Enum T>
struct Traits<T> : public GenericTraits<T> {
static unsigned hash(T value) { return Traits<UnderlyingType<T>>::hash(to_underlying(value)); }
static constexpr bool is_trivial() { return Traits<UnderlyingType<T>>::is_trivial(); }
};
}
using AK::GenericTraits;