ΒΆtemplate <typename R, typename UnaryPredicate>
auto remove_if(R&& Range, UnaryPredicate P)
-> decltype(adl_begin(Range))
template <typename R, typename UnaryPredicate>
auto remove_if(R&& Range, UnaryPredicate P)
-> decltype(adl_begin(Range))
Description
Provide wrappers to std::remove_if which take ranges instead of having to pass begin/end explicitly.
Declared at: llvm/include/llvm/ADT/STLExtras.h:1222
Templates
- R
- UnaryPredicate
Parameters
- R&& Range
- UnaryPredicate P