#ifndef SPROUT_UUID_HASH_HPP #define SPROUT_UUID_HASH_HPP #include #include #include #include namespace sprout { inline SPROUT_CONSTEXPR std::size_t hash_value(sprout::uuids::uuid const& v) { return sprout::hash_range(v.begin(), v.end()); } } // namespace sprout #endif // #ifndef SPROUT_UUID_HASH_HPP