mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
66da9f4fea
support std::hash
32 lines
663 B
C++
32 lines
663 B
C++
#ifndef SPROUT_OPTIONAL_HASH_HPP
|
|
#define SPROUT_OPTIONAL_HASH_HPP
|
|
|
|
#include <cstddef>
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/optional/optional.hpp>
|
|
#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
|