tuple_for_each.cpp 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. // Copyright 2015 Peter Dimov.
  2. //
  3. // Distributed under the Boost Software License, Version 1.0.
  4. //
  5. // See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt
  7. #if defined(_MSC_VER)
  8. #pragma warning( disable: 4244 ) // 'initializing': conversion from 'int' to 'char', possible loss of data
  9. #endif
  10. #include <boost/mp11/tuple.hpp>
  11. #include <boost/core/lightweight_test.hpp>
  12. #include <tuple>
  13. #include <memory>
  14. #include <utility>
  15. #include <array>
  16. int main()
  17. {
  18. using boost::mp11::tuple_for_each;
  19. {
  20. std::tuple<int, short, char> tp{ 1, 2, 3 };
  21. {
  22. int s = 0;
  23. tuple_for_each( tp, [&]( int x ){ s = s * 10 + x; } );
  24. BOOST_TEST_EQ( s, 123 );
  25. }
  26. {
  27. int s = 0;
  28. tuple_for_each( std::move(tp), [&]( int x ){ s = s * 10 + x; } );
  29. BOOST_TEST_EQ( s, 123 );
  30. }
  31. }
  32. {
  33. std::tuple<int, short, char> const tp{ 1, 2, 3 };
  34. {
  35. int s = 0;
  36. tuple_for_each( tp, [&]( int x ){ s = s * 10 + x; } );
  37. BOOST_TEST_EQ( s, 123 );
  38. }
  39. {
  40. int s = 0;
  41. tuple_for_each( std::move(tp), [&]( int x ){ s = s * 10 + x; } );
  42. BOOST_TEST_EQ( s, 123 );
  43. }
  44. }
  45. #if defined( __clang_major__ ) && __clang_major__ == 3 && __clang_minor__ < 8
  46. #else
  47. {
  48. std::tuple<std::unique_ptr<int>, std::unique_ptr<int>, std::unique_ptr<int>> tp{ std::unique_ptr<int>(new int(1)), std::unique_ptr<int>(new int(2)), std::unique_ptr<int>(new int(3)) };
  49. int s = 0;
  50. tuple_for_each( std::move(tp), [&]( std::unique_ptr<int> p ){ s = s * 10 + *p; } );
  51. BOOST_TEST_EQ( s, 123 );
  52. }
  53. #endif
  54. {
  55. std::pair<int, short> tp{ 1, 2 };
  56. {
  57. int s = 0;
  58. tuple_for_each( tp, [&]( int x ){ s = s * 10 + x; } );
  59. BOOST_TEST_EQ( s, 12 );
  60. }
  61. {
  62. int s = 0;
  63. tuple_for_each( std::move(tp), [&]( int x ){ s = s * 10 + x; } );
  64. BOOST_TEST_EQ( s, 12 );
  65. }
  66. }
  67. {
  68. std::pair<int, short> const tp{ 1, 2 };
  69. {
  70. int s = 0;
  71. tuple_for_each( tp, [&]( int x ){ s = s * 10 + x; } );
  72. BOOST_TEST_EQ( s, 12 );
  73. }
  74. {
  75. int s = 0;
  76. tuple_for_each( std::move(tp), [&]( int x ){ s = s * 10 + x; } );
  77. BOOST_TEST_EQ( s, 12 );
  78. }
  79. }
  80. {
  81. std::array<int, 3> tp{{ 1, 2, 3 }};
  82. {
  83. int s = 0;
  84. tuple_for_each( tp, [&]( int x ){ s = s * 10 + x; } );
  85. BOOST_TEST_EQ( s, 123 );
  86. }
  87. {
  88. int s = 0;
  89. tuple_for_each( std::move(tp), [&]( int x ){ s = s * 10 + x; } );
  90. BOOST_TEST_EQ( s, 123 );
  91. }
  92. }
  93. {
  94. std::array<int, 3> const tp{{ 1, 2, 3 }};
  95. {
  96. int s = 0;
  97. tuple_for_each( tp, [&]( int x ){ s = s * 10 + x; } );
  98. BOOST_TEST_EQ( s, 123 );
  99. }
  100. {
  101. int s = 0;
  102. tuple_for_each( std::move(tp), [&]( int x ){ s = s * 10 + x; } );
  103. BOOST_TEST_EQ( s, 123 );
  104. }
  105. }
  106. {
  107. std::tuple<> tp;
  108. BOOST_TEST_EQ( tuple_for_each( tp, 11 ), 11 );
  109. BOOST_TEST_EQ( tuple_for_each( std::move( tp ), 12 ), 12 );
  110. }
  111. {
  112. std::array<int, 0> tp;
  113. BOOST_TEST_EQ( tuple_for_each( tp, 11 ), 11 );
  114. BOOST_TEST_EQ( tuple_for_each( std::move( tp ), 12 ), 12 );
  115. }
  116. return boost::report_errors();
  117. }