1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2024-11-12 21:09:01 +00:00
Sprout/sprout/uuid/hash.hpp
bolero-MURAKAMI 66da9f4fea fix math::log implementation
support std::hash
2013-02-07 03:11:17 +09:00

29 lines
576 B
C++

#ifndef SPROUT_UUID_HASH_HPP
#define SPROUT_UUID_HASH_HPP
#include <cstddef>
#include <sprout/config.hpp>
#include <sprout/uuid/uuid.hpp>
#include <sprout/functional/hash.hpp>
namespace sprout {
//
// hash_value
//
inline SPROUT_CONSTEXPR std::size_t
hash_value(sprout::uuids::uuid const& v) {
return sprout::hash_range(v);
}
} // namespace sprout
namespace std {
//
// hash
//
template<>
struct hash<sprout::uuids::uuid>
: public sprout::hash<sprout::uuids::uuid>
{};
} // namespace std
#endif // #ifndef SPROUT_UUID_HASH_HPP