contains_impl.hpp 1017 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #ifndef BOOST_MPL_MAP_AUX_CONTAINS_IMPL_HPP_INCLUDED
  2. #define BOOST_MPL_MAP_AUX_CONTAINS_IMPL_HPP_INCLUDED
  3. // Copyright Aleksey Gurtovoy 2003-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/contains_fwd.hpp>
  14. #include <boost/mpl/if.hpp>
  15. #include <boost/mpl/map/aux_/at_impl.hpp>
  16. #include <boost/mpl/map/aux_/tag.hpp>
  17. #include <boost/type_traits/is_same.hpp>
  18. namespace boost { namespace mpl {
  19. template<>
  20. struct contains_impl< aux::map_tag >
  21. {
  22. template< typename Map, typename Pair > struct apply
  23. : is_same<
  24. typename at_impl<aux::map_tag>::apply<
  25. Map
  26. , typename Pair::first
  27. >::type
  28. , typename Pair::second
  29. >
  30. {
  31. };
  32. };
  33. }}
  34. #endif // BOOST_MPL_MAP_AUX_CONTAINS_IMPL_HPP_INCLUDED