2012-06-22 10:14:21 +00:00
|
|
|
#ifndef SPROUT_PIT_HASH_HPP
|
|
|
|
#define SPROUT_PIT_HASH_HPP
|
2012-06-21 04:34:26 +00:00
|
|
|
|
2012-06-22 10:14:21 +00:00
|
|
|
#include <cstddef>
|
2012-06-21 04:34:26 +00:00
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/functional/hash/hash.hpp>
|
2012-06-22 10:14:21 +00:00
|
|
|
#include <sprout/pit/pit.hpp>
|
2012-06-21 04:34:26 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
template<typename Container>
|
2012-10-05 15:58:56 +00:00
|
|
|
inline SPROUT_CONSTEXPR std::size_t
|
|
|
|
hash_value(sprout::pit<Container> const& v) {
|
2012-09-21 06:43:30 +00:00
|
|
|
return sprout::to_hash(v.elem);
|
2012-06-21 04:34:26 +00:00
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
2012-06-22 10:14:21 +00:00
|
|
|
#endif // #ifndef SPROUT_PIT_HASH_HPP
|