/*============================================================================= Copyright (c) 2011-2013 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_TPP_ALGORITHM_ALL_OF_HPP #define SPROUT_TPP_ALGORITHM_ALL_OF_HPP #include #include #include namespace sprout { namespace tpp { namespace detail { template struct all_of_impl; template<> struct all_of_impl<> : public sprout::true_type {}; template<> struct all_of_impl : public sprout::true_type {}; template<> struct all_of_impl : public sprout::false_type {}; template struct all_of_impl : public sprout::integral_constant::value> {}; template struct all_of_impl : public sprout::false_type {}; } // namespace detail // // all_of_c // template struct all_of_c : public sprout::tpp::detail::all_of_impl {}; // // all_of // template struct all_of : public sprout::tpp::all_of_c {}; } // namespace tpp } // namespace sprout #endif // #ifndef SPROUT_TPP_ALGORITHM_ALL_OF_HPP