/*============================================================================= 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_NTH_HPP #define SPROUT_CONTAINER_NTH_HPP #include #include #include #include namespace sprout { // // nth // // effect: // sprout::container_range_traits::range_nth(cont, i) // [default] // ADL callable range_nth(cont, i) -> range_nth(cont, i) // [default] // Container is T[N] -> iterator(cont) + i // otherwise, Container is not const // && sprout::is_const_iterator_cast_convertible // && (callable sprout::as_const(cont).nth(i) // || callable sprout::as_const(cont).begin() // || ADL(without sprout) callable begin(sprout::as_const(cont)) // ) // -> sprout::const_iterator_cast(sprout::nth(sprout::as_const(cont), i)) // otherwise, callable cont.nth(i) -> cont.nth(i) // otherwise -> sprout::next(sprout::begin(cont), i) // template inline SPROUT_CONSTEXPR typename sprout::container_traits::iterator nth(Container& cont, typename sprout::container_traits::size_type i) { return sprout::container_range_traits::range_nth(cont, i); } template inline SPROUT_CONSTEXPR typename sprout::container_traits::iterator nth(Container const& cont, typename sprout::container_traits::size_type i) { return sprout::container_range_traits::range_nth(cont, i); } template inline SPROUT_CONSTEXPR typename sprout::container_traits::iterator nth(T (& arr)[N], typename sprout::container_traits::size_type i) { return sprout::container_range_traits::range_nth(arr, i); } template inline SPROUT_CONSTEXPR typename sprout::container_traits::iterator nth(T const (& arr)[N], typename sprout::container_traits::size_type i) { return sprout::container_range_traits::range_nth(arr, i); } // // cnth // template inline SPROUT_CONSTEXPR typename sprout::container_traits::iterator cnth(Container const& cont, typename sprout::container_traits::size_type i) { return sprout::nth(cont, i); } template inline SPROUT_CONSTEXPR typename sprout::container_traits::iterator cnth(T const (& arr)[N], typename sprout::container_traits::size_type i) { return sprout::nth(arr, i); } } // namespace sprout #include #endif // #ifndef SPROUT_CONTAINER_NTH_HPP