/// \file
// Range v3 library
//
// Copyright Eric Niebler 2014
//
// Use, modification and distribution is subject to 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)
//
// Project home: https://github.com/ericniebler/range-v3
//
#ifndef RANGES_V3_ALGORITHM_REMOVE_IF_HPP
#define RANGES_V3_ALGORITHM_REMOVE_IF_HPP
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
namespace ranges
{
inline namespace v3
{
/// \ingroup group-concepts
template
using RemovableIf = meta::strict_and<
ForwardIterator,
IndirectPredicate>,
Permutable>;
/// \addtogroup group-algorithms
/// @{
struct remove_if_fn
{
template() && Sentinel())>
I operator()(I begin, S end, C pred, P proj = P{}) const
{
begin = find_if(std::move(begin), end, std::ref(pred), std::ref(proj));
if(begin != end)
{
for(I i = next(begin); i != end; ++i)
{
if(!(invoke(pred, invoke(proj, *i))))
{
*begin = iter_move(i);
++begin;
}
}
}
return begin;
}
template,
CONCEPT_REQUIRES_(RemovableIf() && ForwardRange())>
safe_iterator_t operator()(Rng &&rng, C pred, P proj = P{}) const
{
return (*this)(begin(rng), end(rng), std::move(pred), std::move(proj));
}
};
/// \sa `remove_if_fn`
/// \ingroup group-algorithms
RANGES_INLINE_VARIABLE(with_braced_init_args, remove_if)
/// @}
} // namespace v3
} // namespace ranges
#endif // include guard