2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2015-01-10 10:13:57 +00:00
|
|
|
Copyright (c) 2011-2015 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-03 13:26:26 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_FIT_COPY_IF_HPP
|
|
|
|
#define SPROUT_ALGORITHM_FIT_COPY_IF_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2012-03-31 07:24:13 +00:00
|
|
|
#include <sprout/container/traits.hpp>
|
|
|
|
#include <sprout/container/functions.hpp>
|
2013-02-26 01:43:27 +00:00
|
|
|
#include <sprout/algorithm/count_if.hpp>
|
2011-09-03 13:26:26 +00:00
|
|
|
#include <sprout/algorithm/fixed/copy_if.hpp>
|
2013-11-20 13:04:11 +00:00
|
|
|
#include <sprout/algorithm/fit/results.hpp>
|
2013-08-08 09:54:33 +00:00
|
|
|
#include <sprout/sub_array/sub_array.hpp>
|
2013-02-07 14:12:57 +00:00
|
|
|
#include <sprout/sub_array/sub.hpp>
|
2013-02-26 07:14:04 +00:00
|
|
|
#include <sprout/iterator/type_traits/category.hpp>
|
2011-09-03 13:26:26 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fit {
|
|
|
|
namespace detail {
|
2011-10-07 07:40:45 +00:00
|
|
|
template<typename InputIterator, typename Result, typename Predicate>
|
2013-11-20 13:04:11 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fit::results::algorithm<Result>::type
|
2012-09-29 08:10:46 +00:00
|
|
|
copy_if_impl(
|
|
|
|
InputIterator first, InputIterator last, Result const& result, Predicate pred,
|
2012-03-31 07:24:13 +00:00
|
|
|
typename sprout::container_traits<Result>::difference_type offset
|
2011-09-03 13:26:26 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::sub_copy(
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::get_internal(sprout::fixed::copy_if(first, last, result, pred)),
|
2011-09-03 13:26:26 +00:00
|
|
|
offset,
|
2013-02-26 01:43:27 +00:00
|
|
|
offset + sprout::fit_size(result, sprout::count_if(first, last, pred))
|
2011-09-03 13:26:26 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// copy_if
|
|
|
|
//
|
2011-10-07 07:40:45 +00:00
|
|
|
template<typename InputIterator, typename Result, typename Predicate>
|
2013-11-20 13:04:11 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fit::results::algorithm<Result>::type
|
2012-09-29 08:10:46 +00:00
|
|
|
copy_if(InputIterator first, InputIterator last, Result const& result, Predicate pred) {
|
2013-01-31 14:25:18 +00:00
|
|
|
static_assert(sprout::is_forward_iterator<InputIterator>::value, "Sorry, not implemented.");
|
2012-03-31 07:24:13 +00:00
|
|
|
return sprout::fit::detail::copy_if_impl(first, last, result, pred, sprout::internal_begin_offset(result));
|
2011-09-03 13:26:26 +00:00
|
|
|
}
|
|
|
|
} // namespace fit
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIT_COPY_IF_HPP
|