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_ALGORITHM_FIXED_TRANSFORM_HPP
|
|
|
|
#define SPROUT_ALGORITHM_FIXED_TRANSFORM_HPP
|
|
|
|
|
2011-10-28 11:34:24 +00:00
|
|
|
#include <iterator>
|
|
|
|
#include <type_traits>
|
2011-09-01 02:48:32 +00:00
|
|
|
#include <sprout/config.hpp>
|
2013-04-06 04:06:51 +00:00
|
|
|
#include <sprout/index_tuple/metafunction.hpp>
|
2012-03-31 07:24:13 +00:00
|
|
|
#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-28 11:34:24 +00:00
|
|
|
#include <sprout/iterator/operation.hpp>
|
2013-01-16 18:53:17 +00:00
|
|
|
#include <sprout/iterator/transform_iterator.hpp>
|
|
|
|
#include <sprout/iterator/type_traits/common.hpp>
|
2013-10-15 11:22:20 +00:00
|
|
|
#include <sprout/iterator/type_traits/is_iterator_of.hpp>
|
|
|
|
#include <sprout/type_traits/enabler_if.hpp>
|
2011-09-03 13:26:26 +00:00
|
|
|
#include <sprout/algorithm/fixed/result_of.hpp>
|
2013-02-07 14:12:57 +00:00
|
|
|
#include <sprout/pit/pit.hpp>
|
2011-10-28 11:34:24 +00:00
|
|
|
#include <sprout/detail/container_complate.hpp>
|
2011-09-01 02:48:32 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fixed {
|
|
|
|
namespace detail {
|
2012-02-28 01:46:39 +00:00
|
|
|
template<typename RandomAccessIterator, typename Result, typename UnaryOperation, sprout::index_t... Indexes>
|
2012-09-29 08:10:46 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
|
|
|
transform_impl_ra(
|
2013-07-22 13:00:09 +00:00
|
|
|
RandomAccessIterator first, RandomAccessIterator,
|
2012-09-29 08:10:46 +00:00
|
|
|
Result const& result, UnaryOperation op,
|
2011-10-28 11:34:24 +00:00
|
|
|
sprout::index_tuple<Indexes...>,
|
2012-03-31 07:24:13 +00:00
|
|
|
typename sprout::container_traits<Result>::difference_type offset,
|
|
|
|
typename sprout::container_traits<Result>::size_type size,
|
|
|
|
typename sprout::container_traits<Result>::size_type input_size
|
2011-09-01 02:48:32 +00:00
|
|
|
)
|
|
|
|
{
|
2012-03-31 07:24:13 +00:00
|
|
|
return sprout::remake<Result>(
|
2013-01-19 23:53:20 +00:00
|
|
|
result, sprout::size(result),
|
2011-09-01 02:48:32 +00:00
|
|
|
(Indexes >= offset && Indexes < offset + size && Indexes < offset + input_size
|
2012-04-30 10:41:24 +00:00
|
|
|
? op(first[Indexes - offset])
|
2012-03-31 07:24:13 +00:00
|
|
|
: *sprout::next(sprout::internal_begin(result), Indexes)
|
2011-09-01 02:48:32 +00:00
|
|
|
)...
|
2011-09-03 13:26:26 +00:00
|
|
|
);
|
2011-09-01 02:48:32 +00:00
|
|
|
}
|
2011-10-28 11:34:24 +00:00
|
|
|
template<typename RandomAccessIterator, typename Result, typename UnaryOperation>
|
2012-09-29 08:10:46 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
|
|
|
transform(
|
|
|
|
RandomAccessIterator first, RandomAccessIterator last,
|
|
|
|
Result const& result, UnaryOperation op,
|
2011-10-28 11:34:24 +00:00
|
|
|
std::random_access_iterator_tag*
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::fixed::detail::transform_impl_ra(
|
2012-09-29 08:10:46 +00:00
|
|
|
first, last,
|
|
|
|
result, op,
|
2013-03-31 06:14:10 +00:00
|
|
|
sprout::container_indexes<Result>::make(),
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::internal_begin_offset(result),
|
2011-10-28 11:34:24 +00:00
|
|
|
sprout::size(result),
|
2013-01-03 08:01:50 +00:00
|
|
|
sprout::distance(first, last)
|
2011-10-28 11:34:24 +00:00
|
|
|
);
|
|
|
|
}
|
2013-01-16 18:53:17 +00:00
|
|
|
|
2011-10-28 11:34:24 +00:00
|
|
|
template<typename InputIterator, typename Result, typename UnaryOperation, typename... Args>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::container_traits<Result>::static_size == sizeof...(Args),
|
2011-10-28 11:34:24 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2012-09-29 08:10:46 +00:00
|
|
|
>::type
|
|
|
|
transform_impl(
|
2013-07-22 13:00:09 +00:00
|
|
|
InputIterator, InputIterator,
|
|
|
|
Result const& result, UnaryOperation,
|
|
|
|
typename sprout::container_traits<Result>::size_type,
|
2011-10-28 11:34:24 +00:00
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
2012-03-31 07:24:13 +00:00
|
|
|
return sprout::remake<Result>(result, sprout::size(result), args...);
|
2011-10-28 11:34:24 +00:00
|
|
|
}
|
|
|
|
template<typename InputIterator, typename Result, typename UnaryOperation, typename... Args>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::container_traits<Result>::static_size != sizeof...(Args),
|
2011-10-28 11:34:24 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2012-09-29 08:10:46 +00:00
|
|
|
>::type
|
|
|
|
transform_impl(
|
|
|
|
InputIterator first, InputIterator last,
|
|
|
|
Result const& result, UnaryOperation op,
|
2012-03-31 07:24:13 +00:00
|
|
|
typename sprout::container_traits<Result>::size_type size,
|
2011-10-28 11:34:24 +00:00
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return first != last && sizeof...(Args) < size
|
|
|
|
? sprout::fixed::detail::transform_impl(sprout::next(first), last, result, op, size, args..., op(*first))
|
|
|
|
: sprout::detail::container_complate(result, args...)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename InputIterator, typename Result, typename UnaryOperation>
|
2012-09-29 08:10:46 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
|
|
|
transform(
|
|
|
|
InputIterator first, InputIterator last,
|
|
|
|
Result const& result, UnaryOperation op,
|
2013-02-23 06:21:27 +00:00
|
|
|
std::input_iterator_tag*
|
2011-10-28 11:34:24 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::fixed::detail::transform_impl(first, last, result, op, sprout::size(result));
|
|
|
|
}
|
2013-01-16 18:53:17 +00:00
|
|
|
|
|
|
|
template<typename InputIterator, typename Result, typename UnaryOperation>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
sprout::is_fixed_container<Result>::value,
|
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
|
|
|
>::type
|
|
|
|
transform(InputIterator first, InputIterator last, Result const& result, UnaryOperation op) {
|
|
|
|
typedef typename std::iterator_traits<InputIterator>::iterator_category* category;
|
|
|
|
return sprout::fixed::detail::transform(first, last, result, op, category());
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename InputIterator, typename Result, typename UnaryOperation>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
!sprout::is_fixed_container<Result>::value,
|
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
|
|
|
>::type
|
|
|
|
transform(InputIterator first, InputIterator last, Result const& result, UnaryOperation op) {
|
|
|
|
return sprout::remake<Result>(
|
2013-01-19 23:53:20 +00:00
|
|
|
result, sprout::size(result),
|
|
|
|
sprout::make_transform_iterator(first, op),
|
|
|
|
sprout::make_transform_iterator(last, op)
|
2013-01-16 18:53:17 +00:00
|
|
|
);
|
|
|
|
}
|
2011-09-01 02:48:32 +00:00
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// transform
|
|
|
|
//
|
2011-10-28 11:34:24 +00:00
|
|
|
template<typename InputIterator, typename Result, typename UnaryOperation>
|
2012-09-29 08:10:46 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
|
|
|
transform(InputIterator first, InputIterator last, Result const& result, UnaryOperation op) {
|
2013-01-16 18:53:17 +00:00
|
|
|
return sprout::fixed::detail::transform(first, last, result, op);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Result, typename InputIterator, typename UnaryOperation>
|
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
|
|
|
transform(InputIterator first, InputIterator last, UnaryOperation op) {
|
|
|
|
return sprout::fixed::transform(first, last, sprout::pit<Result>(), op);
|
2011-09-01 02:48:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace detail {
|
2012-02-28 01:46:39 +00:00
|
|
|
template<typename RandomAccessIterator1, typename RandomAccessIterator2, typename Result, typename BinaryOperation, sprout::index_t... Indexes>
|
2012-09-29 08:10:46 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
|
|
|
transform_impl_ra(
|
2013-07-22 13:00:09 +00:00
|
|
|
RandomAccessIterator1 first1, RandomAccessIterator1, RandomAccessIterator2 first2,
|
2012-09-29 08:10:46 +00:00
|
|
|
Result const& result, BinaryOperation op,
|
2011-10-28 11:34:24 +00:00
|
|
|
sprout::index_tuple<Indexes...>,
|
2012-03-31 07:24:13 +00:00
|
|
|
typename sprout::container_traits<Result>::difference_type offset,
|
|
|
|
typename sprout::container_traits<Result>::size_type size,
|
|
|
|
typename sprout::container_traits<Result>::size_type input_size
|
2011-09-01 02:48:32 +00:00
|
|
|
)
|
|
|
|
{
|
2012-03-31 07:24:13 +00:00
|
|
|
return sprout::remake<Result>(
|
2013-01-19 23:53:20 +00:00
|
|
|
result, sprout::size(result),
|
2011-09-01 02:48:32 +00:00
|
|
|
(Indexes >= offset && Indexes < offset + size && Indexes < offset + input_size
|
2012-04-30 10:41:24 +00:00
|
|
|
? op(first1[Indexes - offset], first2[Indexes - offset])
|
2012-03-31 07:24:13 +00:00
|
|
|
: *sprout::next(sprout::internal_begin(result), Indexes)
|
2011-09-01 02:48:32 +00:00
|
|
|
)...
|
2011-09-03 13:26:26 +00:00
|
|
|
);
|
2011-09-01 02:48:32 +00:00
|
|
|
}
|
2011-10-28 11:34:24 +00:00
|
|
|
template<typename RandomAccessIterator1, typename RandomAccessIterator2, typename Result, typename BinaryOperation>
|
2012-09-29 08:10:46 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
|
|
|
transform(
|
|
|
|
RandomAccessIterator1 first1, RandomAccessIterator1 last1, RandomAccessIterator2 first2,
|
|
|
|
Result const& result, BinaryOperation op,
|
2011-10-28 11:34:24 +00:00
|
|
|
std::random_access_iterator_tag*
|
|
|
|
)
|
|
|
|
{
|
2011-10-28 12:45:00 +00:00
|
|
|
return sprout::fixed::detail::transform_impl_ra(
|
2012-09-29 08:10:46 +00:00
|
|
|
first1, last1, first2,
|
|
|
|
result, op,
|
2013-03-31 06:14:10 +00:00
|
|
|
sprout::container_indexes<Result>::make(),
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::internal_begin_offset(result),
|
2011-10-28 11:34:24 +00:00
|
|
|
sprout::size(result),
|
2013-01-03 08:01:50 +00:00
|
|
|
sprout::distance(first1, last1)
|
2011-10-28 11:34:24 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
template<typename InputIterator1, typename InputIterator2, typename Result, typename BinaryOperation, typename... Args>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::container_traits<Result>::static_size == sizeof...(Args),
|
2011-10-28 11:34:24 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2012-09-29 08:10:46 +00:00
|
|
|
>::type
|
|
|
|
transform_impl(
|
2013-07-22 13:00:09 +00:00
|
|
|
InputIterator1, InputIterator1, InputIterator2,
|
|
|
|
Result const& result, BinaryOperation,
|
|
|
|
typename sprout::container_traits<Result>::size_type,
|
2011-10-28 11:34:24 +00:00
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
2012-03-31 07:24:13 +00:00
|
|
|
return sprout::remake<Result>(result, sprout::size(result), args...);
|
2011-10-28 11:34:24 +00:00
|
|
|
}
|
|
|
|
template<typename InputIterator1, typename InputIterator2, typename Result, typename BinaryOperation, typename... Args>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::container_traits<Result>::static_size != sizeof...(Args),
|
2011-10-28 11:34:24 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2012-09-29 08:10:46 +00:00
|
|
|
>::type
|
|
|
|
transform_impl(
|
|
|
|
InputIterator1 first1, InputIterator1 last1, InputIterator2 first2,
|
|
|
|
Result const& result, BinaryOperation op,
|
2012-03-31 07:24:13 +00:00
|
|
|
typename sprout::container_traits<Result>::size_type size,
|
2011-10-28 11:34:24 +00:00
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return first1 != last1 && sizeof...(Args) < size
|
2011-10-28 12:45:00 +00:00
|
|
|
? sprout::fixed::detail::transform_impl(sprout::next(first1), last1, sprout::next(first2), result, op, size, args..., op(*first1, *first2))
|
2011-10-28 11:34:24 +00:00
|
|
|
: sprout::detail::container_complate(result, args...)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename InputIterator1, typename InputIterator2, typename Result, typename BinaryOperation>
|
2012-09-29 08:10:46 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
|
|
|
transform(
|
|
|
|
InputIterator1 first1, InputIterator1 last1, InputIterator2 first2,
|
|
|
|
Result const& result, BinaryOperation op,
|
2013-02-23 06:21:27 +00:00
|
|
|
std::input_iterator_tag*
|
2011-10-28 11:34:24 +00:00
|
|
|
)
|
|
|
|
{
|
2011-10-28 12:45:00 +00:00
|
|
|
return sprout::fixed::detail::transform_impl(first1, last1, first2, result, op, sprout::size(result));
|
2011-10-28 11:34:24 +00:00
|
|
|
}
|
2013-01-16 18:53:17 +00:00
|
|
|
|
|
|
|
template<typename InputIterator1, typename InputIterator2, typename Result, typename BinaryOperation>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
sprout::is_fixed_container<Result>::value,
|
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
|
|
|
>::type
|
|
|
|
transform(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, Result const& result, BinaryOperation op) {
|
|
|
|
typedef typename sprout::common_iterator_category<InputIterator1, InputIterator2>::type* category;
|
|
|
|
return sprout::fixed::detail::transform(first1, last1, first2, result, op, category());
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename InputIterator1, typename InputIterator2, typename Result, typename BinaryOperation>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
!sprout::is_fixed_container<Result>::value,
|
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
|
|
|
>::type
|
|
|
|
transform(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, Result const& result, BinaryOperation op) {
|
|
|
|
return sprout::remake<Result>(
|
2013-01-19 23:53:20 +00:00
|
|
|
result, sprout::size(result),
|
2013-01-16 18:53:17 +00:00
|
|
|
sprout::make_transform_iterator(first1, first2, op),
|
|
|
|
sprout::make_transform_iterator(last1, first2, op)
|
|
|
|
);
|
|
|
|
}
|
2011-09-01 02:48:32 +00:00
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// transform
|
|
|
|
//
|
2011-10-28 11:34:24 +00:00
|
|
|
template<typename InputIterator1, typename InputIterator2, typename Result, typename BinaryOperation>
|
2012-09-29 08:10:46 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
|
|
|
transform(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, Result const& result, BinaryOperation op) {
|
2013-01-16 18:53:17 +00:00
|
|
|
return sprout::fixed::detail::transform(first1, last1, first2, result, op);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Result, typename InputIterator1, typename InputIterator2, typename BinaryOperation>
|
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
|
|
|
transform(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, BinaryOperation op) {
|
|
|
|
return sprout::fixed::transform(first1, last1, first2, sprout::pit<Result>(), op);
|
2011-09-01 02:48:32 +00:00
|
|
|
}
|
|
|
|
} // namespace fixed
|
2011-09-03 13:26:26 +00:00
|
|
|
|
2013-10-15 11:22:20 +00:00
|
|
|
template<
|
|
|
|
typename InputIterator, typename Result, typename UnaryOperation,
|
|
|
|
typename sprout::enabler_if<!sprout::is_output_iterator<Result>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
|
|
|
transform(InputIterator first, InputIterator last, Result const& result, UnaryOperation op) {
|
|
|
|
return sprout::fixed::transform(first, last, result, op);
|
|
|
|
}
|
|
|
|
template<
|
|
|
|
typename Result, typename InputIterator, typename UnaryOperation,
|
|
|
|
typename sprout::enabler_if<!sprout::is_output_iterator<Result>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
|
|
|
transform(InputIterator first, InputIterator last, UnaryOperation op) {
|
|
|
|
return sprout::fixed::transform<Result>(first, last, op);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<
|
|
|
|
typename InputIterator1, typename InputIterator2, typename Result, typename BinaryOperation,
|
|
|
|
typename sprout::enabler_if<!sprout::is_output_iterator<Result>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
|
|
|
transform(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, Result const& result, BinaryOperation op) {
|
|
|
|
return sprout::fixed::transform(first1, last1, first2, result, op);
|
|
|
|
}
|
|
|
|
template<
|
|
|
|
typename Result, typename InputIterator1, typename InputIterator2, typename BinaryOperation,
|
|
|
|
typename sprout::enabler_if<!sprout::is_output_iterator<Result>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
|
|
|
transform(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, BinaryOperation op) {
|
|
|
|
return sprout::fixed::transform<Result>(first1, last1, first2, op);
|
|
|
|
}
|
2011-09-01 02:48:32 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIXED_TRANSFORM_HPP
|