Sprout/sprout/pit/hash.hpp

18 lines
427 B
C++
Raw Normal View History

#ifndef SPROUT_PIT_HASH_HPP
#define SPROUT_PIT_HASH_HPP
2012-06-21 04:34:26 +00:00
#include <cstddef>
2012-06-21 04:34:26 +00:00
#include <sprout/config.hpp>
#include <sprout/functional/hash/hash.hpp>
#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) {
return sprout::to_hash(v.elem);
2012-06-21 04:34:26 +00:00
}
} // namespace sprout
#endif // #ifndef SPROUT_PIT_HASH_HPP