Sprout/sprout/functional/hash/std/array.hpp

21 lines
485 B
C++
Raw Normal View History

2013-04-12 15:04:01 +00:00
#ifndef SPROUT_FUNCTIONAL_HASH_STD_ARRAY_HPP
#define SPROUT_FUNCTIONAL_HASH_STD_ARRAY_HPP
#include <cstddef>
#include <array>
#include <sprout/config.hpp>
#include <sprout/functional/hash.hpp>
namespace sprout {
//
// hash_value
//
template<typename T, std::size_t N>
inline SPROUT_CONSTEXPR std::size_t
hash_value(std::array<T, N> const& v) {
return sprout::hash_range(v);
}
} // namespace sprout
#endif // #ifndef SPROUT_FUNCTIONAL_HASH_STD_ARRAY_HPP