/*============================================================================= Copyright (c) 2011-2015 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_FRONT_HPP #define SPROUT_CONTAINER_FRONT_HPP #include #include #include #include #include namespace sprout_adl { sprout::not_found_via_adl range_front(...); } // namespace sprout_adl namespace sprout { namespace container_detail { template inline SPROUT_CONSTEXPR typename sprout::container_traits::reference range_front(Container& cont) { return sprout::container_range_traits::range_front(cont); } template inline SPROUT_CONSTEXPR typename sprout::container_traits::reference range_front(Container const& cont) { return sprout::container_range_traits::range_front(cont); } } // namespace container_detail // // front // // effect: // ADL callable range_front(cont) -> range_front(cont) // otherwise -> sprout::container_range_traits::range_front(cont) // [default] // callable cont.front() -> cont.front() // otherwise -> *begin(cont) // template inline SPROUT_CONSTEXPR typename sprout::container_traits::reference front(Container& cont) { using sprout::container_detail::range_front; using sprout_adl::range_front; return range_front(cont); } template inline SPROUT_CONSTEXPR typename sprout::container_traits::reference front(Container const& cont) { using sprout::container_detail::range_front; using sprout_adl::range_front; return range_front(cont); } template inline SPROUT_CONSTEXPR typename sprout::container_traits::reference front(T (& arr)[N]) { return sprout::container_detail::range_front(arr); } template inline SPROUT_CONSTEXPR typename sprout::container_traits::reference front(T const (& arr)[N]) { return sprout::container_detail::range_front(arr); } // // cfront // template inline SPROUT_CONSTEXPR typename sprout::container_traits::reference cfront(Container const& cont) { return sprout::front(cont); } template inline SPROUT_CONSTEXPR typename sprout::container_traits::reference cfront(T const (& arr)[N]) { return sprout::front(arr); } } // namespace sprout #include #endif // #ifndef SPROUT_CONTAINER_FRONT_HPP