mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
20 lines
472 B
C++
20 lines
472 B
C++
#ifndef SPROUT_COMPLEX_HASH_HPP
|
|
#define SPROUT_COMPLEX_HASH_HPP
|
|
|
|
#include <cstddef>
|
|
#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
|
|
|
|
#endif // #ifndef SPROUT_COMPLEX_HASH_HPP
|