1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2024-11-12 21:09:01 +00:00
Sprout/sprout/functional/hash/to_hash.hpp

38 lines
1.3 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +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>
#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
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-02-04 09:42:39 +00:00
#endif // #ifndef SPROUT_FUNCTIONAL_HASH_TO_HASH_HPP