thrust::replace_if
Defined in thrust/replace.h
- 
template<typename ForwardIterator, typename InputIterator, typename Predicate, typename T>
 void thrust::replace_if(ForwardIterator first, ForwardIterator last, InputIterator stencil, Predicate pred, const T &new_value)
- replace_ifreplaces every element in the range- [first, last)for which- pred(*s)returns- truewith- new_value. That is: for every iterator- iin the range- [first, last), and- sin the range- [stencil, stencil + (last - first)), if- pred(*s)is- truethen it performs the assignment- *i = new_value.- The following code snippet demonstrates how to use - replace_ifto replace a- device_vector'selement with- 0when its corresponding stencil element is less than zero.- #include <thrust/replace.h> #include <thrust/device_vector.h> struct is_less_than_zero { __host__ __device__ bool operator()(int x) { return x < 0; } }; ... thrust::device_vector<int> A(4); A[0] = 10; A[1] = 20; A[2] = 30; A[3] = 40; thrust::device_vector<int> S(4); S[0] = -1; S[1] = 0; S[2] = -1; S[3] = 0; is_less_than_zero pred; thrust::replace_if(A.begin(), A.end(), S.begin(), pred, 0); // A contains [0, 20, 0, 40] - See also - replace- See also - replace_copy- See also - replace_copy_if- Parameters
- first – The beginning of the sequence of interest. 
- last – The end of the sequence of interest. 
- stencil – The beginning of the stencil sequence. 
- pred – The predicate to test on every value of the range - [first,last).
- new_value – The new value to replace elements which - pred(*i)evaluates to- true.
 
- Template Parameters
- ForwardIterator – is a model of Forward Iterator, and - ForwardIteratoris mutable.
- InputIterator – is a model of Input Iterator, and - InputIterator's- value_typeis convertible to- Predicate'sargument type.
- Predicate – is a model of Predicate. 
- T – is a model of Assignable, and - Tis convertible to- ForwardIterator's- value_type.