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-07-15 07:04:05 +00:00
|
|
|
inline SPROUT_CONSTEXPR std::size_t hash_value(sprout::pit<Container> const& v) {
|
2012-06-21 04:34:26 +00:00
|
|
|
return sprout::to_hash(v.elem);
|
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
2012-06-22 10:14:21 +00:00
|
|
|
#endif // #ifndef SPROUT_PIT_HASH_HPP
|