/*============================================================================= Copyright (c) 2011-2017 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_CONTAINER_DETAIL_RANGE_NTH_HPP #define SPROUT_CONTAINER_DETAIL_RANGE_NTH_HPP #include #include #include #include #include #include #include #include #include #include #include #include #include namespace sprout_adl { sprout::not_found_via_adl range_nth(...); } // namespace sprout_adl namespace sprout { namespace detail { template struct has_mem_nth_test { public: template< typename U = T, typename = typename sprout::identity().nth(std::declval::size_type>()))>::type > static sprout::true_type test(int); static sprout::false_type test(...); }; #if defined(_MSC_VER) && (_MSC_VER > 1900) template::test(0))>::type> struct has_mem_nth : public Base_ {}; #else template struct has_mem_nth : public sprout::identity::test(0))>::type {}; #endif template struct is_substitutable_const_nth : public sprout::bool_constant< sprout::is_const_iterator_cast_convertible< typename sprout::container_traits::iterator, typename sprout::container_traits::iterator >::value && ( sprout::detail::has_mem_nth::value || sprout::detail::has_mem_begin::value || sprout::detail::has_adl_begin_without_sprout::value ) > {}; template inline SPROUT_CONSTEXPR typename std::enable_if< sprout::detail::is_substitutable_const_nth::value, typename sprout::container_traits::iterator >::type range_nth_impl(Container& cont, typename sprout::container_traits::size_type i) { typedef typename sprout::container_traits::iterator type; return sprout::const_iterator_cast(sprout::nth(sprout::as_const(cont), i)); } template inline SPROUT_CONSTEXPR typename std::enable_if< !sprout::detail::is_substitutable_const_nth::value && sprout::detail::has_mem_nth::value , typename sprout::container_traits::iterator >::type range_nth_impl(Container& cont, typename sprout::container_traits::size_type i) { return cont.nth(i); } template inline SPROUT_CONSTEXPR typename std::enable_if< !sprout::detail::is_substitutable_const_nth::value && !sprout::detail::has_mem_nth::value , typename sprout::container_traits::iterator >::type range_nth_impl(Container& cont, typename sprout::container_traits::size_type i) { return sprout::next(sprout::begin(cont), i); } template inline SPROUT_CONSTEXPR typename std::enable_if< sprout::detail::has_mem_nth::value, typename sprout::container_traits::iterator >::type range_nth_impl(Container const& cont, typename sprout::container_traits::size_type i) { return cont.nth(i); } template inline SPROUT_CONSTEXPR typename std::enable_if< !sprout::detail::has_mem_nth::value, typename sprout::container_traits::iterator >::type range_nth_impl(Container const& cont, typename sprout::container_traits::size_type i) { return sprout::next(sprout::begin(cont), i); } } // namespace detail } // namespace sprout namespace sprout_container_range_detail { template inline SPROUT_CONSTEXPR typename sprout::container_traits::iterator range_nth(Container& cont, typename sprout::container_traits::size_type i) { return sprout::detail::range_nth_impl(cont, i); } template inline SPROUT_CONSTEXPR typename sprout::container_traits::iterator range_nth(Container const& cont, typename sprout::container_traits::size_type i) { return sprout::detail::range_nth_impl(cont, i); } } // namespace sprout_container_range_detail #endif // #ifndef SPROUT_CONTAINER_DETAIL_RANGE_NTH_HPP