Sprout/sprout/tpp/algorithm/all_of.hpp

40 lines
952 B
C++
Raw Normal View History

2012-10-04 14:25:28 +00:00
#ifndef SPROUT_TPP_ALGORITHM_ALL_OF_HPP
#define SPROUT_TPP_ALGORITHM_ALL_OF_HPP
#include <type_traits>
#include <sprout/config.hpp>
namespace sprout {
namespace tpp {
namespace detail {
template<bool Head, bool... Tail>
struct all_of_impl;
template<>
struct all_of_impl<true>
: public std::true_type
{};
template<>
struct all_of_impl<false>
: public std::false_type
{};
template<bool... Tail>
struct all_of_impl<true, Tail...>
: public std::integral_constant<bool, sprout::tpp::detail::all_of_impl<Tail...>::value>
{};
template<bool... Tail>
struct all_of_impl<false, Tail...>
: public std::false_type
{};
} // namespace detail
//
// all_of
//
template<bool... Values>
struct all_of
: public sprout::tpp::detail::all_of_impl<Values...>
{};
} // namespace tpp
} // namespace sprout
#endif // #ifndef SPROUT_TPP_ALGORITHM_ALL_OF_HPP