diff options
author | cobat <cobat@yandex-team.ru> | 2022-02-10 16:49:07 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:07 +0300 |
commit | 1d2e8a8e9976488ea69a7e4763aa749244f82612 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/codecs/README.md | |
parent | e486e109b08823b61996f2154f0bc6b7c27a4af4 (diff) | |
download | ydb-1d2e8a8e9976488ea69a7e4763aa749244f82612.tar.gz |
Restoring authorship annotation for <cobat@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/codecs/README.md')
-rw-r--r-- | library/cpp/codecs/README.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/codecs/README.md b/library/cpp/codecs/README.md index 6e65f710fb9..42646ccd978 100644 --- a/library/cpp/codecs/README.md +++ b/library/cpp/codecs/README.md @@ -1,4 +1,4 @@ -This is a library of compression algorithms with a unified interface and serialization. +This is a library of compression algorithms with a unified interface and serialization. See also library/cpp/codecs/static, where a support for statically compiled dictionaries is implemented. All algorithms have a common `ICodec` interface (described in codecs.h). @@ -26,9 +26,9 @@ The `ICodec` interface has the following methods:\ - The name of the codec. It is required for registration of the codec in the system of serialization/deserialization.\ For example, it allows you to save information about which combination of codecs was in use (see below).\ `virtual void Learn(ISequenceReader*);`\ - - The interface for teaching codecs that use information about the distribution of data. + - The interface for teaching codecs that use information about the distribution of data. -In addition, the library has a number of utilities that allow a more flexible use of it. +In addition, the library has a number of utilities that allow a more flexible use of it. In the `ICodec` class the following methods are available:\ `static TCodecPtr GetInstance(const TString& name);`\ @@ -43,4 +43,4 @@ In the `ICodec` class the following methods are available:\ `static TCodecPtr RestoreFromString(TStringBuf data);`\ - Loads the codec instance from the string\ `static TVector<TString> GetCodecsList();`\ - - The list of registered codecs + - The list of registered codecs |