Sprout/sprout/optional/hash.hpp

34 lines
686 B
C++
Raw Normal View History

#ifndef SPROUT_OPTIONAL_HASH_HPP
#define SPROUT_OPTIONAL_HASH_HPP
#include <cstddef>
#include <functional>
#include <sprout/config.hpp>
#include <sprout/optional/optional.hpp>
2013-02-04 09:42:39 +00:00
#include <sprout/functional/hash.hpp>
namespace sprout {
//
// hash_value
//
template<typename T>
inline SPROUT_CONSTEXPR std::size_t
hash_value(sprout::optional<T> const& v) {
return v.is_initialized() ? sprout::to_hash(*v)
: 0
;
}
} // namespace sprout
namespace std {
//
// hash
//
template<typename T>
struct hash<sprout::optional<T> >
: public sprout::hash<sprout::optional<T> >
{};
} // namespace std
#endif // #ifndef SPROUT_OPTIONAL_HASH_HPP