Sprout/sprout/operation/fixed/resize.hpp

103 lines
3.2 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-09-01 02:48:32 +00:00
#ifndef SPROUT_OPERATION_FIXED_RESIZE_HPP
#define SPROUT_OPERATION_FIXED_RESIZE_HPP
#include <cstddef>
#include <sprout/config.hpp>
2013-04-06 04:06:51 +00:00
#include <sprout/index_tuple/metafunction.hpp>
#include <sprout/container/traits.hpp>
#include <sprout/container/functions.hpp>
2013-03-31 06:14:10 +00:00
#include <sprout/container/indexes.hpp>
2011-10-01 15:19:13 +00:00
#include <sprout/iterator/operation.hpp>
2011-09-01 02:48:32 +00:00
namespace sprout {
namespace fixed {
namespace result_of {
//
// resize
//
template<std::size_t N, typename Container>
struct resize
: public sprout::container_transform_traits<
2011-09-03 13:26:26 +00:00
Container
>::template rebind_size<
2011-09-01 02:48:32 +00:00
N
>
{};
2011-09-01 02:48:32 +00:00
} // namespace result_of
namespace detail {
2012-02-28 01:46:39 +00:00
template<typename Result, typename Container, typename T, sprout::index_t... Indexes>
2012-10-06 04:53:07 +00:00
inline SPROUT_CONSTEXPR Result
resize_impl(
Container const& cont, sprout::index_tuple<Indexes...>,
typename sprout::container_traits<Result>::difference_type size, T const& v
2011-09-01 02:48:32 +00:00
)
{
return sprout::make<Result>(
2011-09-01 02:48:32 +00:00
(Indexes < size
2011-10-01 15:19:13 +00:00
? *sprout::next(sprout::begin(cont), Indexes)
2011-09-01 02:48:32 +00:00
: v
)...
2011-09-03 13:26:26 +00:00
);
2011-09-01 02:48:32 +00:00
}
} // namespace detail
//
// resize
//
template<std::size_t N, typename Container, typename T>
2012-10-06 04:53:07 +00:00
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::resize<N, Container>::type
resize(Container const& cont, T const& v) {
2011-09-01 02:48:32 +00:00
return sprout::fixed::detail::resize_impl<typename sprout::fixed::result_of::resize<N, Container>::type>(
cont,
2013-03-31 06:14:10 +00:00
sprout::container_indexes<typename sprout::fixed::result_of::resize<N, Container>::type>::make(),
2011-09-01 02:48:32 +00:00
sprout::size(cont),
v
);
}
namespace detail {
2012-02-28 01:46:39 +00:00
template<typename Result, typename Container, sprout::index_t... Indexes>
2012-10-06 04:53:07 +00:00
inline SPROUT_CONSTEXPR Result
resize_impl(
Container const& cont, sprout::index_tuple<Indexes...>,
typename sprout::container_traits<Result>::difference_type size
2011-09-01 02:48:32 +00:00
)
{
return sprout::make<Result>(
2011-09-01 02:48:32 +00:00
(Indexes < size
2011-10-01 15:19:13 +00:00
? *sprout::next(sprout::begin(cont), Indexes)
: typename sprout::container_traits<Result>::value_type()
2011-09-01 02:48:32 +00:00
)...
2011-09-03 13:26:26 +00:00
);
2011-09-01 02:48:32 +00:00
}
} // namespace detail
//
// resize
//
template<std::size_t N, typename Container>
2012-10-06 04:53:07 +00:00
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::resize<N, Container>::type
resize(Container const& cont) {
2011-09-01 02:48:32 +00:00
return sprout::fixed::detail::resize_impl<typename sprout::fixed::result_of::resize<N, Container>::type>(
2012-10-06 04:53:07 +00:00
cont,
2013-03-31 06:14:10 +00:00
sprout::container_indexes<typename sprout::fixed::result_of::resize<N, Container>::type>::make(),
2011-09-01 02:48:32 +00:00
sprout::size(cont)
);
}
} // namespace fixed
2011-09-03 13:26:26 +00:00
namespace result_of {
using sprout::fixed::result_of::resize;
} // namespace result_of
using sprout::fixed::resize;
2011-09-01 02:48:32 +00:00
} // namespace sprout
#endif // #ifndef SPROUT_OPERATION_FIXED_RESIZE_HPP