#ifndef SPROUT_TPP_ALGORITHM_NONE_OF_HPP #define SPROUT_TPP_ALGORITHM_NONE_OF_HPP #include #include namespace sprout { namespace tpp { namespace detail { template struct none_of_impl; template<> struct none_of_impl<> : public std::true_type {}; template<> struct none_of_impl : public std::false_type {}; template<> struct none_of_impl : public std::true_type {}; template struct none_of_impl : public std::false_type {}; template struct none_of_impl : public std::integral_constant::value> {}; } // namespace detail // // none_of_c // template struct none_of_c : public sprout::tpp::detail::none_of_impl {}; // // none_of // template struct none_of : public sprout::tpp::none_of_c {}; } // namespace tpp } // namespace sprout #endif // #ifndef SPROUT_TPP_ALGORITHM_NONE_OF_HPP