/*============================================================================= Copyright (c) 2011-2016 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 #include #include #include namespace sprout { // // to_hash // // effect: // sprout::hash_value_traits::type>::hash_value(v) // [default] // ADL callable hash_value(v) -> hash_value(v) // [default] // T is Arithmetic || Enum || Pointer || Array -> implementation-defined // otherwise -> std::hash()(v) // template inline SPROUT_CONSTEXPR std::size_t to_hash(T&& v) { return sprout::hash_value_traits::type>::hash_value(v); } } // namespace sprout #include #endif // #ifndef SPROUT_FUNCTIONAL_HASH_TO_HASH_HPP