1 /*=============================================================================
2 Copyright (c) 2001-2006 Joel de Guzman
5 Distributed under the Boost Software License, Version 1.0. (See accompanying
6 file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7 ==============================================================================*/
8 #if !defined(BOOST_FUSION_COUNT_09162005_0150)
9 #define BOOST_FUSION_COUNT_09162005_0150
11 #include <boost/fusion/algorithm/query/count_if.hpp>
12 #include <boost/fusion/algorithm/query/detail/count.hpp>
14 namespace boost
{ namespace fusion
18 template <typename Sequence
, typename F
>
25 template <typename Sequence
, typename T
>
27 count(Sequence
const& seq
, T
const& x
)
29 detail::count_compare
<T
> f(x
);
30 return fusion::count_if(seq
, f
);