reverse_iter_fold.hpp 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*=============================================================================
  2. Copyright (c) 2010 Christopher Schmidt
  3. Copyright (c) 2001-2011 Joel de Guzman
  4. Copyright (c) 2015 Kohei Takahashi
  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. #ifndef BOOST_FUSION_ALGORITHM_ITERATION_REVERSE_ITER_FOLD_HPP
  9. #define BOOST_FUSION_ALGORITHM_ITERATION_REVERSE_ITER_FOLD_HPP
  10. #include <boost/fusion/support/config.hpp>
  11. #include <boost/fusion/algorithm/iteration/reverse_iter_fold_fwd.hpp>
  12. #include <boost/config.hpp>
  13. #include <boost/fusion/sequence/intrinsic/end.hpp>
  14. #include <boost/fusion/sequence/intrinsic/size.hpp>
  15. #include <boost/fusion/support/is_segmented.hpp>
  16. #include <boost/fusion/support/is_sequence.hpp>
  17. #include <boost/fusion/iterator/deref.hpp>
  18. #include <boost/fusion/iterator/value_of.hpp>
  19. #include <boost/fusion/iterator/prior.hpp>
  20. #include <boost/utility/result_of.hpp>
  21. #include <boost/core/enable_if.hpp>
  22. #include <boost/type_traits/add_reference.hpp>
  23. #define BOOST_FUSION_REVERSE_FOLD
  24. #define BOOST_FUSION_ITER_FOLD
  25. #if !defined(BOOST_FUSION_DONT_USE_PREPROCESSED_FILES)
  26. #include <boost/fusion/algorithm/iteration/detail/preprocessed/reverse_iter_fold.hpp>
  27. #else
  28. #if defined(__WAVE__) && defined(BOOST_FUSION_CREATE_PREPROCESSED_FILES)
  29. #pragma wave option(preserve: 2, line: 0, output: "detail/preprocessed/reverse_iter_fold.hpp")
  30. #endif
  31. /*=============================================================================
  32. Copyright (c) 2010 Christopher Schmidt
  33. Copyright (c) 2001-2011 Joel de Guzman
  34. Distributed under the Boost Software License, Version 1.0. (See accompanying
  35. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  36. This is an auto-generated file. Do not edit!
  37. ==============================================================================*/
  38. #if defined(__WAVE__) && defined(BOOST_FUSION_CREATE_PREPROCESSED_FILES)
  39. #pragma wave option(preserve: 1)
  40. #endif
  41. #include <boost/fusion/algorithm/iteration/detail/fold.hpp>
  42. #if defined(__WAVE__) && defined(BOOST_FUSION_CREATE_PREPROCESSED_FILES)
  43. #pragma wave option(output: null)
  44. #endif
  45. #endif // BOOST_FUSION_DONT_USE_PREPROCESSED_FILES
  46. #undef BOOST_FUSION_REVERSE_FOLD
  47. #undef BOOST_FUSION_ITER_FOLD
  48. #endif