count.cpp 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*=============================================================================
  2. Copyright (c) 2001-2011 Joel de Guzman
  3. Copyright (c) 2005 Eric Niebler
  4. Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. ==============================================================================*/
  7. #include <boost/detail/lightweight_test.hpp>
  8. #include <boost/fusion/container/vector/vector.hpp>
  9. #include <boost/fusion/adapted/mpl.hpp>
  10. #include <boost/fusion/algorithm/query/count.hpp>
  11. #include <boost/mpl/vector_c.hpp>
  12. #include <string>
  13. int
  14. main()
  15. {
  16. {
  17. boost::fusion::vector<int, short, double> t(1, 1, 1);
  18. BOOST_TEST(boost::fusion::count(t, 1) == 3);
  19. }
  20. {
  21. boost::fusion::vector<int, short, double> t(1, 2, 3.3);
  22. BOOST_TEST(boost::fusion::count(t, 3) == 0);
  23. }
  24. {
  25. boost::fusion::vector<int, std::string, double> t(4, "hello", 4);
  26. BOOST_TEST(boost::fusion::count(t, "hello") == 1);
  27. }
  28. {
  29. typedef boost::mpl::vector_c<int, 1, 2, 2, 2, 3, 3> mpl_vec;
  30. BOOST_TEST(boost::fusion::count(mpl_vec(), 2) == 3);
  31. BOOST_TEST(boost::fusion::count(mpl_vec(), 3) == 2);
  32. }
  33. return boost::report_errors();
  34. }