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