chunk/params: minimal documentation for members

This commit is contained in:
Danny Robson 2020-10-04 10:53:48 +11:00
parent 69447ce54b
commit 3367faf2b8

View File

@ -12,8 +12,11 @@
namespace emory::chunk {
struct params {
/// The number of hash bits that must be zero to trigger detection.
std::size_t bits;
/// The number of bytes history the hash uses.
std::size_t window;
/// The minimum number of bytes for a matching region.
std::ptrdiff_t minimum;
};
}