/*============================================================================= 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_INDEX_OF_HPP #define SPROUT_CONTAINER_INDEX_OF_HPP #include #include #include #include namespace sprout { // // index_of // // effect: // sprout::container_range_traits::range_index_of(cont, p) // [default] // ADL callable range_index_of(cont, p) -> range_index_of(cont, p) // [default] // Container is T[N] -> p - iterator(cont) // otherwise, callable cont.index_of(p) -> cont.index_of(p) // otherwise -> sprout::distance(begin(cont), p) // template inline SPROUT_CONSTEXPR typename sprout::container_traits::size_type index_of(Container& cont, typename sprout::container_traits::iterator p) { return sprout::container_range_traits::range_index_of(cont, p); } template inline SPROUT_CONSTEXPR typename sprout::container_traits::size_type index_of(Container const& cont, typename sprout::container_traits::iterator p) { return sprout::container_range_traits::range_index_of(cont, p); } template inline SPROUT_CONSTEXPR typename sprout::container_traits::size_type index_of(T (& arr)[N], typename sprout::container_traits::iterator p) { return sprout::container_range_traits::range_index_of(arr, p); } template inline SPROUT_CONSTEXPR typename sprout::container_traits::size_type index_of(T const (& arr)[N], typename sprout::container_traits::iterator p) { return sprout::container_range_traits::range_index_of(arr, p); } // // cindex_of // template inline SPROUT_CONSTEXPR typename sprout::container_traits::size_type cindex_of(Container const& cont, typename sprout::container_traits::iterator p) { return sprout::index_of(cont, p); } template inline SPROUT_CONSTEXPR typename sprout::container_traits::size_type cindex_of(T const (& arr)[N], typename sprout::container_traits::iterator p) { return sprout::index_of(arr, p); } } // namespace sprout #include #endif // #ifndef SPROUT_CONTAINER_INDEX_OF_HPP