Sprout/sprout/utility/value_holder/hash.hpp
2013-04-21 13:30:30 +09:00

46 lines
1.1 KiB
C++

#ifndef SPROUT_UTILITY_VALUE_HOLDER_HASH_HPP
#define SPROUT_UTILITY_VALUE_HOLDER_HASH_HPP
#include <cstddef>
#include <functional>
#include <sprout/config.hpp>
#include <sprout/utility/value_holder/value_holder.hpp>
#include <sprout/functional/hash.hpp>
namespace sprout {
//
// hash_value
//
template<typename T>
inline SPROUT_CONSTEXPR std::size_t
hash_value(sprout::value_holder<T> const& v) {
return sprout::to_hash(*v)
;
}
template<typename T>
inline SPROUT_CONSTEXPR std::size_t
hash_value(sprout::value_holder<T&> const& v) {
return v.is_initialized() ? sprout::to_hash(*v)
: 0
;
}
} // namespace sprout
namespace std {
#if defined(__clang__)
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wmismatched-tags"
#endif
//
// hash
//
template<typename T>
struct hash<sprout::value_holder<T> >
: public sprout::hash<sprout::value_holder<T> >
{};
#if defined(__clang__)
# pragma clang diagnostic pop
#endif
} // namespace std
#endif // #ifndef SPROUT_UTILITY_VALUE_HOLDER_HASH_HPP