Sprout/sprout/complex/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

31 lines
664 B
C++

#ifndef SPROUT_COMPLEX_HASH_HPP
#define SPROUT_COMPLEX_HASH_HPP
#include <cstddef>
#include <functional>
#include <sprout/config.hpp>
#include <sprout/complex/complex.hpp>
#include <sprout/functional/hash.hpp>
namespace sprout {
//
// hash_value
//
template<typename T>
inline SPROUT_CONSTEXPR std::size_t
hash_value(sprout::complex<T> const& v) {
return sprout::hash_values(v.real(), v.imag());
}
} // namespace sprout
namespace std {
//
// hash
//
template<typename T>
struct hash<sprout::complex<T> >
: public sprout::hash<sprout::complex<T> >
{};
} // namespace std
#endif // #ifndef SPROUT_COMPLEX_HASH_HPP