/*============================================================================= 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_ALGORITHM_ALL_OF_EQUAL_HPP #define SPROUT_ALGORITHM_ALL_OF_EQUAL_HPP #include #include #include #include #include #include namespace sprout { namespace detail { template inline SPROUT_CONSTEXPR bool all_of_equal_impl_ra( RandomAccessIterator const& first, RandomAccessIterator const& last, T const& value, typename std::iterator_traits::difference_type pivot ) { return pivot == 0 ? *first == value : sprout::detail::all_of_equal_impl_ra( first, sprout::next(first, pivot), value, pivot / 2 ) && sprout::detail::all_of_equal_impl_ra( sprout::next(first, pivot), last, value, (sprout::distance(first, last) - pivot) / 2 ) ; } template inline SPROUT_CONSTEXPR typename std::enable_if< sprout::is_constant_distance_iterator::value, bool >::type all_of_equal( RandomAccessIterator const& first, RandomAccessIterator const& last, T const& value, std::random_access_iterator_tag* ) { return first == last ? true : sprout::detail::all_of_equal_impl_ra(first, last, value, sprout::distance(first, last) / 2) ; } template inline SPROUT_CONSTEXPR sprout::pair all_of_equal_impl_1( sprout::pair const& current, InputIterator const& last, T const& value, typename std::iterator_traits::difference_type n ) { typedef sprout::pair type; return !current.second || current.first == last ? current : n == 1 ? *current.first == value ? type(sprout::next(current.first), true) : type(current.first, false) : sprout::detail::all_of_equal_impl_1( sprout::detail::all_of_equal_impl_1( current, last, value, n / 2 ), last, value, n - n / 2 ) ; } template inline SPROUT_CONSTEXPR sprout::pair all_of_equal_impl( sprout::pair const& current, InputIterator const& last, T const& value, typename std::iterator_traits::difference_type n ) { return !current.second || current.first == last ? current : sprout::detail::all_of_equal_impl( sprout::detail::all_of_equal_impl_1( current, last, value, n ), last, value, n * 2 ) ; } template inline SPROUT_CONSTEXPR bool all_of_equal( InputIterator const& first, InputIterator const& last, T const& value, std::input_iterator_tag* ) { typedef sprout::pair type; return sprout::detail::all_of_equal_impl(type(first, true), last, value, 1).second; } } // namespace detail // // all_of_equal // // recursion depth: // O(log N) // template inline SPROUT_CONSTEXPR bool all_of_equal(InputIterator first, InputIterator last, T const& value) { typedef typename std::iterator_traits::iterator_category* category; return sprout::detail::all_of_equal(first, last, value, category()); } } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_ALL_OF_EQUAL_HPP