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

}