| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- // Copyright 2017 Peter Dimov.
- // Distributed under the Boost Software License, Version 1.0.
- // https://www.boost.org/LICENSE_1_0.txt
- #ifndef BOOST_HASH_IS_RANGE_HPP_INCLUDED
- #define BOOST_HASH_IS_RANGE_HPP_INCLUDED
- #include <boost/container_hash/detail/requires_cxx11.hpp>
- #include <boost/type_traits/integral_constant.hpp>
- #include <boost/type_traits/is_integral.hpp>
- #include <boost/type_traits/declval.hpp>
- #include <boost/type_traits/is_same.hpp>
- #include <boost/type_traits/remove_cv.hpp>
- #include <boost/config.hpp>
- #include <boost/config/workaround.hpp>
- #include <iterator>
- namespace boost
- {
- #if !defined(BOOST_NO_CXX11_DECLTYPE) && !defined(BOOST_NO_SFINAE_EXPR) && !BOOST_WORKAROUND(BOOST_GCC, < 40700)
- namespace hash_detail
- {
- template<class T, class It>
- integral_constant< bool, !is_same<typename remove_cv<T>::type, typename std::iterator_traits<It>::value_type>::value >
- is_range_check( It first, It last );
- template<class T> decltype( is_range_check<T>( declval<T const&>().begin(), declval<T const&>().end() ) ) is_range_( int );
- template<class T> false_type is_range_( ... );
- } // namespace hash_detail
- namespace container_hash
- {
- template<class T> struct is_range: decltype( hash_detail::is_range_<T>( 0 ) )
- {
- };
- } // namespace container_hash
- #else
- namespace hash_detail
- {
- template<class T, class E = true_type> struct is_range_: false_type
- {
- };
- template<class T> struct is_range_< T, integral_constant< bool,
- is_same<typename T::value_type, typename std::iterator_traits<typename T::const_iterator>::value_type>::value &&
- is_integral<typename T::size_type>::value
- > >: true_type
- {
- };
- } // namespace hash_detail
- namespace container_hash
- {
- template<class T> struct is_range: hash_detail::is_range_<T>
- {
- };
- } // namespace container_hash
- #endif // !defined(BOOST_NO_CXX11_DECLTYPE) && !defined(BOOST_NO_SFINAE_EXPR)
- } // namespace boost
- #endif // #ifndef BOOST_HASH_IS_RANGE_HPP_INCLUDED
|