~ubuntu-branches/ubuntu/warty/aqsis/warty

« back to all changes in this revision

Viewing changes to boost/boost/mpl/count_if.hpp

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2004-08-24 07:25:04 UTC
  • Revision ID: james.westby@ubuntu.com-20040824072504-zf993vnevvisdsvb
Tags: upstream-0.9.1
ImportĀ upstreamĀ versionĀ 0.9.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//-----------------------------------------------------------------------------
 
2
// boost mpl/count_if.hpp header file
 
3
// See http://www.boost.org for updates, documentation, and revision history.
 
4
//-----------------------------------------------------------------------------
 
5
//
 
6
// Copyright (c) 2000-02
 
7
// Aleksey Gurtovoy
 
8
//
 
9
// Permission to use, copy, modify, distribute and sell this software
 
10
// and its documentation for any purpose is hereby granted without fee, 
 
11
// provided that the above copyright notice appears in all copies and 
 
12
// that both the copyright notice and this permission notice appear in 
 
13
// supporting documentation. No representations are made about the 
 
14
// suitability of this software for any purpose. It is provided "as is" 
 
15
// without express or implied warranty.
 
16
 
 
17
#ifndef BOOST_MPL_COUNT_IF_HPP_INCLUDED
 
18
#define BOOST_MPL_COUNT_IF_HPP_INCLUDED
 
19
 
 
20
#include "boost/mpl/fold.hpp"
 
21
#include "boost/mpl/next.hpp"
 
22
#include "boost/mpl/integral_c.hpp"
 
23
#include "boost/mpl/identity.hpp"
 
24
#include "boost/mpl/apply_if.hpp"
 
25
#include "boost/mpl/lambda.hpp"
 
26
#include "boost/mpl/protect.hpp"
 
27
#include "boost/mpl/apply.hpp"
 
28
#include "boost/mpl/aux_/void_spec.hpp"
 
29
#include "boost/mpl/aux_/lambda_support.hpp"
 
30
 
 
31
namespace boost {
 
32
namespace mpl {
 
33
 
 
34
namespace aux {
 
35
 
 
36
template< typename Predicate >
 
37
struct next_if
 
38
{
 
39
    template<
 
40
          typename N
 
41
        , typename T
 
42
        >
 
43
    struct apply
 
44
    {
 
45
        typedef typename apply_if<
 
46
              typename apply1<Predicate,T>::type
 
47
            , next<N>
 
48
            , identity<N>
 
49
            >::type type;
 
50
    };
 
51
};
 
52
 
 
53
} // namespace aux
 
54
 
 
55
BOOST_MPL_AUX_AGLORITHM_NAMESPACE_BEGIN
 
56
 
 
57
template<
 
58
      typename BOOST_MPL_AUX_VOID_SPEC_PARAM(Sequence)
 
59
    , typename BOOST_MPL_AUX_VOID_SPEC_PARAM(Predicate)
 
60
    >
 
61
struct count_if
 
62
{
 
63
 private:
 
64
    typedef typename lambda<Predicate>::type pred_;
 
65
 
 
66
 public:
 
67
    typedef typename fold<
 
68
          Sequence
 
69
        , integral_c<unsigned long, 0>
 
70
        , protect< aux::next_if<pred_> >
 
71
        >::type type;
 
72
 
 
73
    BOOST_MPL_AUX_LAMBDA_SUPPORT(2,count_if,(Sequence,Predicate))
 
74
};
 
75
 
 
76
BOOST_MPL_AUX_AGLORITHM_NAMESPACE_END
 
77
 
 
78
BOOST_MPL_AUX_ALGORITHM_VOID_SPEC(2, count_if)
 
79
 
 
80
} // namespace mpl
 
81
} // namespace boost
 
82
 
 
83
#endif // BOOST_MPL_COUNT_IF_HPP_INCLUDED