Add Reset to the Hasher<T> base

This commit is contained in:
hashlag
2025-08-15 23:50:10 +03:00
parent 81e9d2412f
commit ed0ffcf582

View File

@@ -8,6 +8,11 @@ template<typename T>
class Hasher
{
public:
void Reset()
{
Impl().Reset();
}
template<typename InputIt>
void Update(InputIt begin, InputIt end)
{