2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2015-01-10 10:13:57 +00:00
|
|
|
Copyright (c) 2011-2015 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
2012-06-22 10:14:21 +00:00
|
|
|
#ifndef SPROUT_SUB_ARRAY_HASH_HPP
|
|
|
|
#define SPROUT_SUB_ARRAY_HASH_HPP
|
2011-10-12 20:28:33 +00:00
|
|
|
|
2013-02-18 17:49:10 +00:00
|
|
|
#include <functional>
|
2011-10-12 20:28:33 +00:00
|
|
|
#include <sprout/config.hpp>
|
2014-04-30 07:30:26 +00:00
|
|
|
#include <sprout/workaround/std/cstddef.hpp>
|
2012-06-22 10:14:21 +00:00
|
|
|
#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 {
|
2013-02-04 01:24:23 +00:00
|
|
|
//
|
|
|
|
// 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) {
|
2013-02-04 14:48:18 +00:00
|
|
|
return sprout::hash_range(v);
|
2011-10-12 20:28:33 +00:00
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
2013-02-06 18:11:17 +00:00
|
|
|
namespace std {
|
2013-04-21 04:30:30 +00:00
|
|
|
#if defined(__clang__)
|
|
|
|
# pragma clang diagnostic push
|
|
|
|
# pragma clang diagnostic ignored "-Wmismatched-tags"
|
|
|
|
#endif
|
2013-02-06 18:11:17 +00:00
|
|
|
//
|
|
|
|
// hash
|
|
|
|
//
|
|
|
|
template<typename Container>
|
|
|
|
struct hash<sprout::sub_array<Container> >
|
|
|
|
: public sprout::hash<sprout::sub_array<Container> >
|
|
|
|
{};
|
2013-04-21 04:30:30 +00:00
|
|
|
#if defined(__clang__)
|
|
|
|
# pragma clang diagnostic pop
|
|
|
|
#endif
|
2013-02-06 18:11:17 +00:00
|
|
|
} // namespace std
|
|
|
|
|
2012-06-22 10:14:21 +00:00
|
|
|
#endif // #ifndef SPROUT_SUB_ARRAY_HASH_HPP
|