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

namespace NCodecs {
    template <>
    TStringBuf TDeltaCodec<ui64, true>::MyName() {
        return "delta64-unsigned";
    }
    template <>
    TStringBuf TDeltaCodec<ui32, true>::MyName() {
        return "delta32-unsigned";
    }
    template <>
    TStringBuf TDeltaCodec<ui64, false>::MyName() {
        return "delta64-signed";
    }
    template <>
    TStringBuf TDeltaCodec<ui32, false>::MyName() {
        return "delta32-signed";
    }

}