2011-09-01 02:48:32 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_FIXED_COPY_IF_HPP
|
|
|
|
#define SPROUT_ALGORITHM_FIXED_COPY_IF_HPP
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/fixed_container/traits.hpp>
|
|
|
|
#include <sprout/fixed_container/functions.hpp>
|
2011-10-01 15:19:13 +00:00
|
|
|
#include <sprout/iterator/operation.hpp>
|
2011-09-03 13:26:26 +00:00
|
|
|
#include <sprout/algorithm/fixed/result_of.hpp>
|
2011-09-01 02:48:32 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fixed {
|
|
|
|
namespace detail {
|
|
|
|
template<typename Result, typename... Args>
|
|
|
|
SPROUT_CONSTEXPR inline typename std::enable_if<
|
|
|
|
sprout::fixed_container_traits<Result>::fixed_size == sizeof...(Args),
|
2011-09-03 13:26:26 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2011-09-01 02:48:32 +00:00
|
|
|
>::type copy_if_impl_3(
|
|
|
|
Result const& result,
|
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
2011-09-03 13:26:26 +00:00
|
|
|
return sprout::remake_clone<Result, Result>(result, sprout::size(result), args...);
|
2011-09-01 02:48:32 +00:00
|
|
|
}
|
|
|
|
template<typename Result, typename... Args>
|
|
|
|
SPROUT_CONSTEXPR inline typename std::enable_if<
|
|
|
|
sprout::fixed_container_traits<Result>::fixed_size != sizeof...(Args),
|
2011-09-03 13:26:26 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2011-09-01 02:48:32 +00:00
|
|
|
>::type copy_if_impl_3(
|
|
|
|
Result const& result,
|
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
2011-10-01 15:19:13 +00:00
|
|
|
return copy_if_impl_3(result, args..., *sprout::next(sprout::fixed_begin(result), sizeof...(Args)));
|
2011-09-01 02:48:32 +00:00
|
|
|
}
|
|
|
|
template<typename Iterator, typename Result, typename Predicate, typename... Args>
|
|
|
|
SPROUT_CONSTEXPR inline typename std::enable_if<
|
|
|
|
sprout::fixed_container_traits<Result>::fixed_size == sizeof...(Args),
|
2011-09-03 13:26:26 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2011-09-01 02:48:32 +00:00
|
|
|
>::type copy_if_impl_2(
|
|
|
|
Iterator first,
|
|
|
|
Iterator last,
|
|
|
|
Result const& result,
|
|
|
|
Predicate pred,
|
|
|
|
typename sprout::fixed_container_traits<Result>::difference_type offset,
|
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
2011-09-03 13:26:26 +00:00
|
|
|
return sprout::remake_clone<Result, Result>(result, sprout::size(result), args...);
|
2011-09-01 02:48:32 +00:00
|
|
|
}
|
|
|
|
template<typename Iterator, typename Result, typename Predicate, typename... Args>
|
|
|
|
SPROUT_CONSTEXPR inline typename std::enable_if<
|
|
|
|
sprout::fixed_container_traits<Result>::fixed_size != sizeof...(Args),
|
2011-09-03 13:26:26 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2011-09-01 02:48:32 +00:00
|
|
|
>::type copy_if_impl_2(
|
|
|
|
Iterator first,
|
|
|
|
Iterator last,
|
|
|
|
Result const& result,
|
|
|
|
Predicate pred,
|
|
|
|
typename sprout::fixed_container_traits<Result>::difference_type offset,
|
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return first != last && sizeof...(Args) < offset
|
|
|
|
? pred(*first)
|
2011-10-01 15:19:13 +00:00
|
|
|
? copy_if_impl_2(sprout::next(first), last, result, pred, offset, args..., *first)
|
|
|
|
: copy_if_impl_2(sprout::next(first), last, result, pred, offset, args...)
|
2011-09-01 02:48:32 +00:00
|
|
|
: copy_if_impl_3(result, args...)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename Iterator, typename Result, typename Predicate, typename... Args>
|
|
|
|
SPROUT_CONSTEXPR inline typename std::enable_if<
|
|
|
|
sprout::fixed_container_traits<Result>::fixed_size == sizeof...(Args),
|
2011-09-03 13:26:26 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2011-09-01 02:48:32 +00:00
|
|
|
>::type copy_if_impl_1(
|
|
|
|
Iterator first,
|
|
|
|
Iterator last,
|
|
|
|
Result const& result,
|
|
|
|
Predicate pred,
|
|
|
|
typename sprout::fixed_container_traits<Result>::difference_type offset,
|
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
2011-09-03 13:26:26 +00:00
|
|
|
return sprout::remake_clone<Result, Result>(result, sprout::size(result), args...);
|
2011-09-01 02:48:32 +00:00
|
|
|
}
|
|
|
|
template<typename Iterator, typename Result, typename Predicate, typename... Args>
|
|
|
|
SPROUT_CONSTEXPR inline typename std::enable_if<
|
|
|
|
sprout::fixed_container_traits<Result>::fixed_size != sizeof...(Args),
|
2011-09-03 13:26:26 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2011-09-01 02:48:32 +00:00
|
|
|
>::type copy_if_impl_1(
|
|
|
|
Iterator first,
|
|
|
|
Iterator last,
|
|
|
|
Result const& result,
|
|
|
|
Predicate pred,
|
|
|
|
typename sprout::fixed_container_traits<Result>::difference_type offset,
|
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sizeof...(Args) < offset
|
2011-10-01 15:19:13 +00:00
|
|
|
? copy_if_impl_1(first, last, result, pred, offset, args..., *sprout::next(sprout::fixed_begin(result), sizeof...(Args)))
|
2011-09-01 02:48:32 +00:00
|
|
|
: copy_if_impl_2(first, last, result, pred, offset + sprout::size(result), args...)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename Iterator, typename Result, typename Predicate>
|
2011-09-03 13:26:26 +00:00
|
|
|
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm<Result>::type copy_if_impl(
|
2011-09-01 02:48:32 +00:00
|
|
|
Iterator first,
|
|
|
|
Iterator last,
|
|
|
|
Result const& result,
|
|
|
|
Predicate pred
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return copy_if_impl_1(first, last, result, pred, sprout::fixed_begin_offset(result));
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// copy_if
|
|
|
|
//
|
|
|
|
template<typename Iterator, typename Result, typename Predicate>
|
2011-09-03 13:26:26 +00:00
|
|
|
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm<Result>::type copy_if(
|
2011-09-01 02:48:32 +00:00
|
|
|
Iterator first,
|
|
|
|
Iterator last,
|
|
|
|
Result const& result,
|
|
|
|
Predicate pred
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::fixed::detail::copy_if_impl(first, last, result, pred);
|
|
|
|
}
|
|
|
|
} // namespace fixed
|
2011-09-03 13:26:26 +00:00
|
|
|
|
|
|
|
using sprout::fixed::copy_if;
|
2011-09-01 02:48:32 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIXED_COPY_IF_HPP
|