summaryrefslogtreecommitdiff
path: root/AK/Traits.h
blob: b3c89571a380326136364c31329d7b2f844f6a81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#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 intHash(i); }
    static void dump(int i) { kprintf("%d", i); }
};

template<>
struct Traits<unsigned> {
    static unsigned hash(unsigned u) { return intHash(u); }
    static void dump(unsigned u) { kprintf("%u", u); }
};

template<typename T>
struct Traits<T*> {
    static unsigned hash(const T* p)
    {
#ifdef SERENITY
        return intHash((dword)p);
#else
        return intHash((unsigned long long)p & 0xffffffff);
#endif
    }
    static void dump(const T* p) { kprintf("%p", p); }
};

}