mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 07:17:35 +00:00
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:
parent
22b836dd7b
commit
f99e6507ee
1 changed files with 7 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <AK/Concepts.h>
|
||||||
#include <AK/Forward.h>
|
#include <AK/Forward.h>
|
||||||
#include <AK/HashFunctions.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; }
|
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;
|
using AK::GenericTraits;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue