Sprout/sprout/container/detail/range_size.hpp
2017-07-29 14:20:01 +09:00

77 lines
2.7 KiB
C++

/*=============================================================================
Copyright (c) 2011-2017 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)
=============================================================================*/
#ifndef SPROUT_CONTAINER_DETAIL_RANGE_SIZE_HPP
#define SPROUT_CONTAINER_DETAIL_RANGE_SIZE_HPP
#include <utility>
#include <type_traits>
#include <sprout/config.hpp>
#include <sprout/type_traits/integral_constant.hpp>
#include <sprout/type_traits/identity.hpp>
#include <sprout/container/traits_fwd.hpp>
#include <sprout/container/container_traits.hpp>
#include <sprout/container/range_functions_fwd.hpp>
#include <sprout/iterator/operation.hpp>
#include <sprout/adl/not_found.hpp>
namespace sprout_adl {
sprout::not_found_via_adl range_size(...);
} // namespace sprout_adl
namespace sprout {
namespace detail {
template<typename T>
struct has_mem_size_test {
public:
template<
typename U = T,
typename = typename sprout::identity<decltype(std::declval<U>().size())>::type
>
static sprout::true_type test(int);
static sprout::false_type test(...);
};
#if defined(_MSC_VER) && (_MSC_VER > 1900)
template<typename T, typename Base_ = typename sprout::identity<decltype(sprout::detail::has_mem_size_test<T>::test(0))>::type>
struct has_mem_size
: public Base_
{};
#else
template<typename T>
struct has_mem_size
: public sprout::identity<decltype(sprout::detail::has_mem_size_test<T>::test(0))>::type
{};
#endif
template<typename Container>
inline SPROUT_CONSTEXPR typename std::enable_if<
sprout::detail::has_mem_size<Container const>::value,
typename sprout::container_traits<Container const>::size_type
>::type
range_size_impl(Container const& cont) {
return cont.size();
}
template<typename Container>
inline SPROUT_CONSTEXPR typename std::enable_if<
!sprout::detail::has_mem_size<Container const>::value,
typename sprout::container_traits<Container const>::size_type
>::type
range_size_impl(Container const& cont) {
return sprout::distance(sprout::begin(cont), sprout::end(cont));
}
} // namespace detail
} // namespace sprout
namespace sprout_container_range_detail {
template<typename Container>
inline SPROUT_CONSTEXPR typename sprout::container_traits<Container const>::size_type
range_size(Container const& cont) {
return sprout::detail::range_size_impl(cont);
}
} // namespace sprout_container_range_detail
#endif // #ifndef SPROUT_CONTAINER_DETAIL_RANGE_SIZE_HPP