back.hpp 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #ifndef BOOST_MPL_VECTOR_AUX_BACK_HPP_INCLUDED
  2. #define BOOST_MPL_VECTOR_AUX_BACK_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/back_fwd.hpp>
  14. #include <boost/mpl/next_prior.hpp>
  15. #include <boost/mpl/vector/aux_/at.hpp>
  16. #include <boost/mpl/vector/aux_/tag.hpp>
  17. #include <boost/mpl/aux_/config/typeof.hpp>
  18. #include <boost/mpl/aux_/config/ctps.hpp>
  19. namespace boost { namespace mpl {
  20. #if defined(BOOST_MPL_CFG_TYPEOF_BASED_SEQUENCES)
  21. template<>
  22. struct back_impl< aux::vector_tag >
  23. {
  24. template< typename Vector > struct apply
  25. : v_at<
  26. Vector
  27. , prior<typename Vector::size>::type::value
  28. >
  29. {
  30. };
  31. };
  32. #else
  33. #if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
  34. template< long n_ >
  35. struct back_impl< aux::vector_tag<n_> >
  36. {
  37. template< typename Vector > struct apply
  38. {
  39. typedef typename Vector::back type;
  40. };
  41. };
  42. #endif // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
  43. #endif // BOOST_MPL_CFG_TYPEOF_BASED_SEQUENCES
  44. }}
  45. #endif // BOOST_MPL_VECTOR_AUX_BACK_HPP_INCLUDED