mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
955561e36c
fix sprout/range/adaptor/sized.hpp
103 lines
3 KiB
C++
103 lines
3 KiB
C++
#ifndef SPROUT_CONTAINER_CONTAINER_TRANSFORM_TRAITS_HPP
|
|
#define SPROUT_CONTAINER_CONTAINER_TRANSFORM_TRAITS_HPP
|
|
|
|
#include <cstddef>
|
|
#include <type_traits>
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/container/container_traits.hpp>
|
|
|
|
namespace sprout {
|
|
//
|
|
// container_transform_traits
|
|
//
|
|
template<typename Container>
|
|
struct container_transform_traits;
|
|
|
|
namespace detail {
|
|
template<typename Container>
|
|
struct is_like_array_class
|
|
: public std::false_type
|
|
{};
|
|
template<
|
|
template<typename, std::size_t> class Array,
|
|
typename T,
|
|
std::size_t N
|
|
>
|
|
struct is_like_array_class<Array<T, N> >
|
|
: public std::true_type
|
|
{};
|
|
template<typename Container>
|
|
struct is_like_array_class<Container const>
|
|
: public sprout::detail::is_like_array_class<Container>
|
|
{};
|
|
template<typename Container>
|
|
struct is_like_array_class<Container volatile>
|
|
: public sprout::detail::is_like_array_class<Container>
|
|
{};
|
|
template<typename Container>
|
|
struct is_like_array_class<Container const volatile>
|
|
: public sprout::detail::is_like_array_class<Container>
|
|
{};
|
|
|
|
template<typename Container, typename sprout::container_traits<Container>::size_type Size>
|
|
struct default_array_rebind_size;
|
|
template<
|
|
template<typename, std::size_t> class Array,
|
|
typename T,
|
|
std::size_t N,
|
|
typename sprout::container_traits<Array<T, N> >::size_type Size
|
|
>
|
|
struct default_array_rebind_size<Array<T, N>, Size> {
|
|
public:
|
|
typedef Array<T, Size> type;
|
|
};
|
|
|
|
template<typename Container, typename = void>
|
|
struct inherit_default_rebind_size {};
|
|
template<typename Container>
|
|
struct inherit_default_rebind_size<
|
|
Container,
|
|
typename std::enable_if<sprout::detail::is_like_array_class<Container>::value>::type
|
|
> {
|
|
public:
|
|
template<typename sprout::container_traits<Container>::size_type Size>
|
|
struct rebind_size
|
|
: public sprout::detail::default_array_rebind_size<Container, Size>
|
|
{};
|
|
};
|
|
} // namespace detail
|
|
|
|
template<typename Container>
|
|
struct container_transform_traits
|
|
: public sprout::detail::inherit_default_rebind_size<Container>
|
|
{};
|
|
template<typename Container>
|
|
struct container_transform_traits<Container const> {
|
|
public:
|
|
template<typename sprout::container_traits<Container>::size_type Size>
|
|
struct rebind_size {
|
|
typedef typename sprout::container_transform_traits<Container>::template rebind_size<Size>::type const type;
|
|
};
|
|
};
|
|
|
|
template<typename T, std::size_t N>
|
|
struct container_transform_traits<T[N]> {
|
|
public:
|
|
template<typename sprout::container_traits<T[N]>::size_type Size>
|
|
struct rebind_size {
|
|
public:
|
|
typedef T type[Size];
|
|
};
|
|
};
|
|
template<typename T, std::size_t N>
|
|
struct container_transform_traits<T const[N]> {
|
|
public:
|
|
template<typename sprout::container_traits<T const[N]>::size_type Size>
|
|
struct rebind_size {
|
|
public:
|
|
typedef T const type[Size];
|
|
};
|
|
};
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_CONTAINER_CONTAINER_TRANSFORM_TRAITS_HPP
|