|
Bolt
1.3
C++ template library with support for OpenCL
|
Removes every element which is equal to specified value or that which satisfies specified condition (if any) in the given input range. More...
#include <amp.h>#include "bolt/amp/functional.h"#include "bolt/amp/bolt.h"#include <string>#include <assert.h>#include <bolt/amp/detail/remove.inl>Go to the source code of this file.
Namespaces | |
| namespace | bolt |
| Defining namespace for the Bolt project. | |
| namespace | bolt::amp |
| Namespace containing AMP related data types and functions. | |
Functions | |
| template<typename ForwardIterator , typename Predicate > | |
| ForwardIterator | bolt::amp::remove_if (control &ctl, ForwardIterator first, ForwardIterator last, Predicate pred) |
| template<typename ForwardIterator , typename Predicate > | |
| ForwardIterator | bolt::amp::remove_if (ForwardIterator first, ForwardIterator last, Predicate pred) |
| template<typename ForwardIterator , typename InputIterator , typename Predicate > | |
| ForwardIterator | bolt::amp::remove_if (control &ctl, ForwardIterator first, ForwardIterator last, InputIterator stencil, Predicate pred) |
| template<typename ForwardIterator , typename InputIterator , typename Predicate > | |
| ForwardIterator | bolt::amp::remove_if (ForwardIterator first, ForwardIterator last, InputIterator stencil, Predicate pred) |
| template<typename ForwardIterator , typename T > | |
| ForwardIterator | bolt::amp::remove (control &ctl, ForwardIterator first, ForwardIterator last, const T &value) |
| template<typename ForwardIterator , typename T > | |
| ForwardIterator | bolt::amp::remove (ForwardIterator first, ForwardIterator last, const T &value) |
| template<typename InputIterator , typename OutputIterator , typename Predicate > | |
| OutputIterator | bolt::amp::remove_copy_if (control &ctl, InputIterator first, InputIterator last, OutputIterator result, Predicate pred) |
| template<typename InputIterator , typename OutputIterator , typename Predicate > | |
| OutputIterator | bolt::amp::remove_copy_if (InputIterator first, InputIterator last, OutputIterator result, Predicate pred) |
| template<typename InputIterator1 , typename InputIterator2 , typename OutputIterator , typename Predicate > | |
| OutputIterator | bolt::amp::remove_copy_if (control &ctl, InputIterator1 first, InputIterator1 last, InputIterator2 stencil, OutputIterator result, Predicate pred) |
| template<typename InputIterator1 , typename InputIterator2 , typename OutputIterator , typename Predicate > | |
| OutputIterator | bolt::amp::remove_copy_if (InputIterator1 first, InputIterator1 last, InputIterator2 stencil, OutputIterator result, Predicate pred) |
| template<typename InputIterator , typename OutputIterator , typename T > | |
| OutputIterator | bolt::amp::remove_copy (control &ctl, InputIterator first, InputIterator last, OutputIterator result, const T &value) |
| template<typename InputIterator , typename OutputIterator , typename T > | |
| OutputIterator | bolt::amp::remove_copy (InputIterator first, InputIterator last, OutputIterator result, const T &value) |
Removes every element which is equal to specified value or that which satisfies specified condition (if any) in the given input range.
1.8.3