// mishmash.hpp (c) 20190407 _M // #pragma once #include #include namespace codedweller { uint32_t mishmash(const unsigned char* buffer, size_t length) noexcept; uint32_t mishmash(const std::string &s) noexcept; uint32_t mishmash(const std::vector& v) noexcept; }