#ifndef SPROUT_COMPLEX_HASH_HPP #define SPROUT_COMPLEX_HASH_HPP #include #include #include #include namespace sprout { // // hash_value // template inline SPROUT_CONSTEXPR std::size_t hash_value(sprout::complex const& v) { return sprout::hash_values(v.real(), v.imag()); } } // namespace sprout #endif // #ifndef SPROUT_COMPLEX_HASH_HPP