push_front.hpp 914 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #ifndef BOOST_MPL_LIST_AUX_PUSH_FRONT_HPP_INCLUDED
  2. #define BOOST_MPL_LIST_AUX_PUSH_FRONT_HPP_INCLUDED
  3. // Copyright Aleksey Gurtovoy 2000-2004
  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/push_front_fwd.hpp>
  14. #include <boost/mpl/next.hpp>
  15. #include <boost/mpl/list/aux_/item.hpp>
  16. #include <boost/mpl/list/aux_/tag.hpp>
  17. namespace boost { namespace mpl {
  18. template<>
  19. struct push_front_impl< aux::list_tag >
  20. {
  21. template< typename List, typename T > struct apply
  22. {
  23. typedef l_item<
  24. typename next<typename List::size>::type
  25. , T
  26. , typename List::type
  27. > type;
  28. };
  29. };
  30. }}
  31. #endif // BOOST_MPL_LIST_AUX_PUSH_FRONT_HPP_INCLUDED