Sprout/sprout/weed/detail/is_same_container.hpp

43 lines
1.3 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
Copyright (c) 2011-2013 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
2011-11-13 08:54:38 +00:00
#ifndef SPROUT_WEED_DETAIL_IS_SAME_CONTAINER_HPP
#define SPROUT_WEED_DETAIL_IS_SAME_CONTAINER_HPP
#include <type_traits>
#include <sprout/config.hpp>
#include <sprout/type_traits/integral_constant.hpp>
2011-11-13 08:54:38 +00:00
#include <sprout/weed/traits/type/is_container.hpp>
namespace sprout {
namespace weed {
namespace detail {
template<typename T, typename U, typename = void>
struct is_same_container
: public sprout::false_type
2011-11-13 08:54:38 +00:00
{};
template<typename T, typename U>
struct is_same_container<
T,
U,
typename std::enable_if<
sprout::weed::traits::is_container<T>::value
&& sprout::weed::traits::is_container<U>::value
&& std::is_same<
typename T::value_type,
typename U::value_type
>::value
>::type
>
: public sprout::true_type
2011-11-13 08:54:38 +00:00
{};
} // namespace detail
} // namespace weed
} // namespace sprout
#endif // #ifndef SPROUT_WEED_DETAIL_IS_SAME_CONTAINER_HPP