Sprout/sprout/sub_array/hash.hpp

20 lines
472 B
C++
Raw Normal View History

#ifndef SPROUT_SUB_ARRAY_HASH_HPP
#define SPROUT_SUB_ARRAY_HASH_HPP
2011-10-12 20:28:33 +00:00
#include <sprout/config.hpp>
#include <sprout/sub_array/sub_array.hpp>
2013-02-04 09:42:39 +00:00
#include <sprout/functional/hash.hpp>
2011-10-12 20:28:33 +00:00
namespace sprout {
//
// hash_value
//
2011-10-12 20:28:33 +00:00
template<typename Container>
2012-10-05 15:58:56 +00:00
SPROUT_CONSTEXPR std::size_t
hash_value(sprout::sub_array<Container> const& v) {
2011-10-12 20:28:33 +00:00
return sprout::hash_range(v.begin(), v.end());
}
} // namespace sprout
#endif // #ifndef SPROUT_SUB_ARRAY_HASH_HPP