/*============================================================================= 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_CONTAINER_AT_HPP #define SPROUT_CONTAINER_AT_HPP #include #include #include #include namespace sprout { // // at // // effect: // sprout::container_range_traits::range_at(cont, i) // [default] // ADL callable range_at(cont, i) -> range_at(cont, i) // [default] // Container is T[N] -> cont[i] // callable cont.at(i) -> cont.at(i) // otherwise -> *sprout::next(sprout::begin(cont), i) // template inline SPROUT_CONSTEXPR typename sprout::container_traits::reference at(Container& cont, typename sprout::container_traits::size_type i) { return sprout::container_range_traits::range_at(cont, i); } template inline SPROUT_CONSTEXPR typename sprout::container_traits::reference at(Container const& cont, typename sprout::container_traits::size_type i) { return sprout::container_range_traits::range_at(cont, i); } template inline SPROUT_CONSTEXPR typename sprout::container_traits::reference at(T (& arr)[N], typename sprout::container_traits::size_type i) { return sprout::container_range_traits::range_at(arr, i); } template inline SPROUT_CONSTEXPR typename sprout::container_traits::reference at(T const (& arr)[N], typename sprout::container_traits::size_type i) { return sprout::container_range_traits::range_at(arr, i); } // // cat // template inline SPROUT_CONSTEXPR typename sprout::container_traits::reference cat(Container const& cont, typename sprout::container_traits::size_type i) { return sprout::at(cont, i); } template inline SPROUT_CONSTEXPR typename sprout::container_traits::reference cat(T const (& arr)[N], typename sprout::container_traits::size_type i) { return sprout::at(arr, i); } } // namespace sprout #include #endif // #ifndef SPROUT_CONTAINER_AT_HPP