mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-04 05:19:58 +03:00
36 lines
606 B
C++
36 lines
606 B
C++
#pragma once
|
|
|
|
#include "kstdio.h"
|
|
#include "HashFunctions.h"
|
|
|
|
namespace AK {
|
|
|
|
template<typename T>
|
|
struct Traits
|
|
{
|
|
};
|
|
|
|
template<>
|
|
struct Traits<int> {
|
|
static unsigned hash(int i) { return int_hash(i); }
|
|
static void dump(int i) { kprintf("%d", i); }
|
|
};
|
|
|
|
template<>
|
|
struct Traits<unsigned> {
|
|
static unsigned hash(unsigned u) { return int_hash(u); }
|
|
static void dump(unsigned u) { kprintf("%u", u); }
|
|
};
|
|
|
|
template<typename T>
|
|
struct Traits<T*> {
|
|
static unsigned hash(const T* p)
|
|
{
|
|
return int_hash((dword)p);
|
|
}
|
|
static void dump(const T* p) { kprintf("%p", p); }
|
|
};
|
|
|
|
}
|
|
|