2011-09-01 02:48:32 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_FIXED_REMOVE_COPY_IF_HPP
|
|
|
|
#define SPROUT_ALGORITHM_FIXED_REMOVE_COPY_IF_HPP
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
2012-03-31 07:24:13 +00:00
|
|
|
#include <sprout/container/traits.hpp>
|
|
|
|
#include <sprout/container/functions.hpp>
|
2011-10-21 11:36:19 +00:00
|
|
|
#include <sprout/iterator/operation.hpp>
|
2011-09-03 13:26:26 +00:00
|
|
|
#include <sprout/algorithm/fixed/result_of.hpp>
|
2011-10-28 12:45:00 +00:00
|
|
|
#include <sprout/detail/container_complate.hpp>
|
2011-09-01 02:48:32 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fixed {
|
|
|
|
namespace detail {
|
2011-10-07 07:40:45 +00:00
|
|
|
template<typename InputIterator, typename Result, typename Predicate, typename... Args>
|
2011-09-01 02:48:32 +00:00
|
|
|
SPROUT_CONSTEXPR inline typename std::enable_if<
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::container_traits<Result>::static_size == sizeof...(Args),
|
2011-09-03 13:26:26 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2011-10-28 12:45:00 +00:00
|
|
|
>::type remove_copy_if_impl(
|
2011-10-07 07:40:45 +00:00
|
|
|
InputIterator first,
|
|
|
|
InputIterator last,
|
2011-09-01 02:48:32 +00:00
|
|
|
Result const& result,
|
|
|
|
Predicate pred,
|
2012-03-31 07:24:13 +00:00
|
|
|
typename sprout::container_traits<Result>::size_type size,
|
2011-09-01 02:48:32 +00:00
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
2012-03-31 07:24:13 +00:00
|
|
|
return sprout::remake<Result>(result, sprout::size(result), args...);
|
2011-09-01 02:48:32 +00:00
|
|
|
}
|
2011-10-07 07:40:45 +00:00
|
|
|
template<typename InputIterator, typename Result, typename Predicate, typename... Args>
|
2011-09-01 02:48:32 +00:00
|
|
|
SPROUT_CONSTEXPR inline typename std::enable_if<
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::container_traits<Result>::static_size != sizeof...(Args),
|
2011-09-03 13:26:26 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2011-10-28 12:45:00 +00:00
|
|
|
>::type remove_copy_if_impl(
|
2011-10-07 07:40:45 +00:00
|
|
|
InputIterator first,
|
|
|
|
InputIterator last,
|
2011-09-01 02:48:32 +00:00
|
|
|
Result const& result,
|
|
|
|
Predicate pred,
|
2012-03-31 07:24:13 +00:00
|
|
|
typename sprout::container_traits<Result>::size_type size,
|
2011-09-01 02:48:32 +00:00
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
2011-10-28 12:45:00 +00:00
|
|
|
return first != last && sizeof...(Args) < size
|
2011-09-01 02:48:32 +00:00
|
|
|
? pred(*first)
|
2011-10-28 12:45:00 +00:00
|
|
|
? sprout::fixed::detail::remove_copy_if_impl(sprout::next(first), last, result, pred, size, args...)
|
|
|
|
: sprout::fixed::detail::remove_copy_if_impl(sprout::next(first), last, result, pred, size, args..., *first)
|
|
|
|
: sprout::detail::container_complate(result, args...)
|
2011-09-01 02:48:32 +00:00
|
|
|
;
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// remove_copy_if
|
|
|
|
//
|
2011-10-07 07:40:45 +00:00
|
|
|
template<typename InputIterator, typename Result, typename Predicate>
|
2011-09-03 13:26:26 +00:00
|
|
|
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm<Result>::type remove_copy_if(
|
2011-10-07 07:40:45 +00:00
|
|
|
InputIterator first,
|
|
|
|
InputIterator last,
|
2011-09-01 02:48:32 +00:00
|
|
|
Result const& result,
|
|
|
|
Predicate pred
|
|
|
|
)
|
|
|
|
{
|
2011-10-28 12:45:00 +00:00
|
|
|
return sprout::fixed::detail::remove_copy_if_impl(first, last, result, pred, sprout::size(result));
|
2011-09-01 02:48:32 +00:00
|
|
|
}
|
|
|
|
} // namespace fixed
|
2011-09-03 13:26:26 +00:00
|
|
|
|
|
|
|
using sprout::fixed::remove_copy_if;
|
2011-09-01 02:48:32 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIXED_REMOVE_COPY_IF_HPP
|