From ed0ffcf582a611b29b8a90cb03b53418c80edc6f Mon Sep 17 00:00:00 2001 From: hashlag <90853356+hashlag@users.noreply.github.com> Date: Fri, 15 Aug 2025 23:50:10 +0300 Subject: [PATCH] Add Reset to the Hasher base --- Chaos/Hash/Hasher.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Chaos/Hash/Hasher.hpp b/Chaos/Hash/Hasher.hpp index 3597fe1..12137fa 100644 --- a/Chaos/Hash/Hasher.hpp +++ b/Chaos/Hash/Hasher.hpp @@ -8,6 +8,11 @@ template class Hasher { public: + void Reset() + { + Impl().Reset(); + } + template void Update(InputIt begin, InputIt end) {