count.cpp 806 B

12345678910111213141516171819202122
  1. // Copyright Louis Dionne 2013-2017
  2. // Distributed under the Boost Software License, Version 1.0.
  3. // (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
  4. #include <boost/hana/assert.hpp>
  5. #include <boost/hana/count.hpp>
  6. #include <boost/hana/equal.hpp>
  7. #include <boost/hana/integral_constant.hpp>
  8. #include <boost/hana/tuple.hpp>
  9. #include <boost/hana/type.hpp>
  10. namespace hana = boost::hana;
  11. int main() {
  12. constexpr auto ints = hana::tuple_c<int, 1, 2, 3, 2, 2, 4, 2>;
  13. BOOST_HANA_CONSTANT_CHECK(hana::count(ints, hana::int_c<2>) == hana::size_c<4>);
  14. static_assert(hana::count(ints, 2) == 4, "");
  15. constexpr auto types = hana::tuple_t<int, char, long, short, char, double>;
  16. BOOST_HANA_CONSTANT_CHECK(hana::count(types, hana::type_c<char>) == hana::size_c<2>);
  17. }