insert_range_impl.hpp 920 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #ifndef BOOST_MPL_SET_AUX_INSERT_RANGE_IMPL_HPP_INCLUDED
  2. #define BOOST_MPL_SET_AUX_INSERT_RANGE_IMPL_HPP_INCLUDED
  3. // Copyright Bruno Dutra 2015
  4. //
  5. // Distributed under the Boost Software License, Version 1.0.
  6. // (See accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt)
  8. //
  9. // See http://www.boost.org/libs/mpl for documentation.
  10. // $Id$
  11. // $Date$
  12. // $Revision$
  13. #include <boost/mpl/insert_range_fwd.hpp>
  14. #include <boost/mpl/set/aux_/tag.hpp>
  15. #include <boost/mpl/placeholders.hpp>
  16. #include <boost/mpl/fold.hpp>
  17. #include <boost/mpl/insert.hpp>
  18. namespace boost { namespace mpl {
  19. template<>
  20. struct insert_range_impl< aux::set_tag >
  21. {
  22. template<
  23. typename Sequence
  24. , typename /*Pos*/
  25. , typename Range
  26. >
  27. struct apply
  28. : fold<Range, Sequence, insert<_1, _2> >
  29. {
  30. };
  31. };
  32. }}
  33. #endif // BOOST_MPL_SET_AUX_INSERT_RANGE_IMPL_HPP_INCLUDED