Sprout/sprout/operation/fixed/resize_backward.hpp

111 lines
4 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
2014-01-08 07:48:12 +00:00
Copyright (c) 2011-2014 Bolero MURAKAMI
2013-08-08 09:54:33 +00:00
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_BACKWARD_HPP
#define SPROUT_OPERATION_FIXED_RESIZE_BACKWARD_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-03 13:26:26 +00:00
#include <sprout/operation/fixed/resize.hpp>
2011-09-01 02:48:32 +00:00
namespace sprout {
namespace fixed {
namespace results {
2011-09-01 02:48:32 +00:00
//
// resize_backward
//
template<std::size_t N, typename Container>
struct resize_backward
: public sprout::fixed::results::resize<N, Container>
2011-09-01 02:48:32 +00:00
{};
} // namespace results
2011-09-01 02:48:32 +00:00
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_backward_impl(
Container const& cont, sprout::index_tuple<Indexes...>,
typename sprout::container_traits<Result>::difference_type size,
typename sprout::container_traits<Result>::difference_type offset,
2011-09-01 02:48:32 +00:00
T const& v
)
{
return sprout::make<Result>(
2011-09-01 02:48:32 +00:00
(Indexes >= offset && Indexes < offset + size
2011-10-01 15:19:13 +00:00
? *sprout::next(sprout::begin(cont), Indexes - offset)
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_backward
//
template<std::size_t N, typename Container, typename T>
inline SPROUT_CONSTEXPR typename sprout::fixed::results::resize_backward<N, Container>::type
2012-10-06 04:53:07 +00:00
resize_backward(Container const& cont, T const& v) {
return sprout::fixed::detail::resize_backward_impl<typename sprout::fixed::results::resize_backward<N, Container>::type>(
2011-09-01 02:48:32 +00:00
cont,
sprout::container_indexes<typename sprout::fixed::results::resize_backward<N, Container>::type>::make(),
2011-09-01 02:48:32 +00:00
sprout::size(cont),
static_cast<typename sprout::container_traits<Container>::difference_type>(
sprout::container_traits<typename sprout::fixed::results::resize_backward<N, Container>::type>::static_size
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_backward_impl(
Container const& cont, sprout::index_tuple<Indexes...>,
typename sprout::container_traits<Result>::difference_type size,
typename sprout::container_traits<Result>::difference_type offset
2011-09-01 02:48:32 +00:00
)
{
return sprout::make<Result>(
2011-09-01 02:48:32 +00:00
(Indexes >= offset && Indexes < offset + size
2011-10-01 15:19:13 +00:00
? *sprout::next(sprout::begin(cont), Indexes - offset)
: 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_backward
//
template<std::size_t N, typename Container>
inline SPROUT_CONSTEXPR typename sprout::fixed::results::resize_backward<N, Container>::type
2012-10-06 04:53:07 +00:00
resize_backward(Container const& cont) {
return sprout::fixed::detail::resize_backward_impl<typename sprout::fixed::results::resize_backward<N, Container>::type>(
2011-09-01 02:48:32 +00:00
cont,
sprout::container_indexes<typename sprout::fixed::results::resize_backward<N, Container>::type>::make(),
2011-09-01 02:48:32 +00:00
sprout::size(cont),
static_cast<typename sprout::container_traits<Container>::difference_type>(
sprout::container_traits<typename sprout::fixed::results::resize_backward<N, Container>::type>::static_size
2011-09-01 02:48:32 +00:00
)
- sprout::size(cont)
);
}
} // namespace fixed
2011-09-03 13:26:26 +00:00
namespace results {
using sprout::fixed::results::resize_backward;
} // namespace results
2011-09-03 13:26:26 +00:00
using sprout::fixed::resize_backward;
2011-09-01 02:48:32 +00:00
} // namespace sprout
#endif // #ifndef SPROUT_OPERATION_FIXED_RESIZE_BACKWARD_HPP