2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2017-07-29 05:20:01 +00:00
|
|
|
Copyright (c) 2011-2017 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)
|
|
|
|
=============================================================================*/
|
2013-02-04 09:42:39 +00:00
|
|
|
#ifndef SPROUT_FUNCTIONAL_HASH_TO_HASH_HPP
|
|
|
|
#define SPROUT_FUNCTIONAL_HASH_TO_HASH_HPP
|
|
|
|
|
2016-04-14 14:16:21 +00:00
|
|
|
#include <type_traits>
|
2013-02-04 09:42:39 +00:00
|
|
|
#include <sprout/config.hpp>
|
2014-04-30 07:30:26 +00:00
|
|
|
#include <sprout/workaround/std/cstddef.hpp>
|
2013-02-04 09:42:39 +00:00
|
|
|
#include <sprout/functional/hash/hash_fwd.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
|
|
|
// to_hash
|
|
|
|
//
|
2013-04-22 14:55:30 +00:00
|
|
|
// effect:
|
2016-04-14 14:16:21 +00:00
|
|
|
// sprout::hash_value_traits<typename std::remove_reference<T>::type>::hash_value(v)
|
2013-04-22 14:55:30 +00:00
|
|
|
// [default]
|
2016-04-08 03:51:11 +00:00
|
|
|
// ADL callable hash_value(v) -> hash_value(v)
|
|
|
|
// [default]
|
|
|
|
// T is Arithmetic || Enum || Pointer || Array -> implementation-defined
|
|
|
|
// otherwise -> std::hash<T>()(v)
|
2013-04-22 14:55:30 +00:00
|
|
|
//
|
2013-02-04 09:42:39 +00:00
|
|
|
template<typename T>
|
|
|
|
inline SPROUT_CONSTEXPR std::size_t
|
2013-04-22 04:04:27 +00:00
|
|
|
to_hash(T&& v) {
|
2016-04-14 14:16:21 +00:00
|
|
|
return sprout::hash_value_traits<typename std::remove_reference<T>::type>::hash_value(v);
|
2013-02-04 09:42:39 +00:00
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
2016-04-08 03:51:11 +00:00
|
|
|
#include <sprout/functional/hash/hash_value_traits.hpp>
|
2013-04-22 04:04:27 +00:00
|
|
|
|
2013-02-04 09:42:39 +00:00
|
|
|
#endif // #ifndef SPROUT_FUNCTIONAL_HASH_TO_HASH_HPP
|