mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
43 lines
1.4 KiB
C++
43 lines
1.4 KiB
C++
/*=============================================================================
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
|
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)
|
|
=============================================================================*/
|
|
#ifndef SPROUT_FUNCTIONAL_HASH_TO_HASH_HPP
|
|
#define SPROUT_FUNCTIONAL_HASH_TO_HASH_HPP
|
|
|
|
#include <cstddef>
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/functional/hash/hash_fwd.hpp>
|
|
#include <sprout/utility/forward.hpp>
|
|
#include <sprout/adl/not_found.hpp>
|
|
|
|
namespace sprout_adl {
|
|
sprout::not_found_via_adl hash_value(...);
|
|
} // namespace sprout_adl
|
|
|
|
namespace sprout {
|
|
//
|
|
// to_hash
|
|
//
|
|
// effect:
|
|
// ADL callable hash_value(v) -> hash_value(v)
|
|
// otherwise -> sprout::hash_value_traits<T>::hash_value(v)
|
|
// [default]
|
|
// v is Arithmetic || Enum || Pointer || Array -> implementation-defined
|
|
// otherwise -> std::hash<T>()(v)
|
|
//
|
|
template<typename T>
|
|
inline SPROUT_CONSTEXPR std::size_t
|
|
to_hash(T&& v) {
|
|
using sprout::hash_value;
|
|
using sprout_adl::hash_value;
|
|
return hash_value(SPROUT_FORWARD(T, v));
|
|
}
|
|
} // namespace sprout
|
|
|
|
#include <sprout/functional/hash/hash_value.hpp>
|
|
|
|
#endif // #ifndef SPROUT_FUNCTIONAL_HASH_TO_HASH_HPP
|