aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/codecs/pfor_codec.cpp
blob: 3b51c99afad8d636d87110779d4533352cdd3794 (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";
    }
 
}