aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/codecs/pfor_codec.cpp
blob: f6b3b0920bdc9d1acae9bc783e82a1de1d979ea3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "pfor_codec.h"

namespace NCodecs {
    template <>
    TStringBuf TPForCodec<ui64, true>::MyName() {
        return "pfor-delta64-sorted";
    }
    template <>
    TStringBuf TPForCodec<ui32, true>::MyName() {
        return "pfor-delta32-sorted";
    }

    template <>
    TStringBuf TPForCodec<ui64, false>::MyName() {
        return "pfor-ui64";
    }
    template <>
    TStringBuf TPForCodec<ui32, false>::MyName() {
        return "pfor-ui32";
    }

}