Sprout/sprout/uuid/hash.hpp
bolero-MURAKAMI 1ef8a6a63b add sprout::string_ref
support conversion array-like container iterator to pointer
2013-02-19 02:49:10 +09:00

30 lines
599 B
C++

#ifndef SPROUT_UUID_HASH_HPP
#define SPROUT_UUID_HASH_HPP
#include <cstddef>
#include <functional>
#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