2 #ifndef BOOST_MPL_AUX_FIND_IF_PRED_HPP_INCLUDED
\r
3 #define BOOST_MPL_AUX_FIND_IF_PRED_HPP_INCLUDED
\r
5 // Copyright Aleksey Gurtovoy 2000-2004
\r
6 // Copyright Eric Friedman 2002
\r
8 // Distributed under the Boost Software License, Version 1.0.
\r
9 // (See accompanying file LICENSE_1_0.txt or copy at
\r
10 // http://www.boost.org/LICENSE_1_0.txt)
\r
12 // See http://www.boost.org/libs/mpl for documentation.
\r
14 #include <boost/mpl/aux_/iter_apply.hpp>
\r
15 #include <boost/mpl/not.hpp>
\r
17 namespace boost { namespace mpl { namespace aux {
\r
19 template< typename Predicate >
\r
22 template< typename Iterator >
\r
25 typedef not_< aux::iter_apply1<Predicate,Iterator> > type;
\r
31 #endif // BOOST_MPL_AUX_FIND_IF_PRED_HPP_INCLUDED
\r