|
template<typename DerivedPolicy , typename InputIterator , typename OutputIterator , typename Predicate > |
__host__ __device__ OutputIterator | thrust::copy_if (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, InputIterator first, InputIterator last, OutputIterator result, Predicate pred) |
|
template<typename InputIterator , typename OutputIterator , typename Predicate > |
OutputIterator | thrust::copy_if (InputIterator first, InputIterator last, OutputIterator result, Predicate pred) |
|
template<typename DerivedPolicy , typename InputIterator1 , typename InputIterator2 , typename OutputIterator , typename Predicate > |
__host__ __device__ OutputIterator | thrust::copy_if (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, InputIterator1 first, InputIterator1 last, InputIterator2 stencil, OutputIterator result, Predicate pred) |
|
template<typename InputIterator1 , typename InputIterator2 , typename OutputIterator , typename Predicate > |
OutputIterator | thrust::copy_if (InputIterator1 first, InputIterator1 last, InputIterator2 stencil, OutputIterator result, Predicate pred) |
|
template<typename DerivedPolicy , typename ForwardIterator , typename T > |
__host__ __device__ ForwardIterator | thrust::remove (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, ForwardIterator first, ForwardIterator last, const T &value) |
|
template<typename ForwardIterator , typename T > |
ForwardIterator | thrust::remove (ForwardIterator first, ForwardIterator last, const T &value) |
|
template<typename DerivedPolicy , typename InputIterator , typename OutputIterator , typename T > |
__host__ __device__ OutputIterator | thrust::remove_copy (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, InputIterator first, InputIterator last, OutputIterator result, const T &value) |
|
template<typename InputIterator , typename OutputIterator , typename T > |
OutputIterator | thrust::remove_copy (InputIterator first, InputIterator last, OutputIterator result, const T &value) |
|
template<typename DerivedPolicy , typename ForwardIterator , typename Predicate > |
__host__ __device__ ForwardIterator | thrust::remove_if (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, ForwardIterator first, ForwardIterator last, Predicate pred) |
|
template<typename ForwardIterator , typename Predicate > |
ForwardIterator | thrust::remove_if (ForwardIterator first, ForwardIterator last, Predicate pred) |
|
template<typename DerivedPolicy , typename InputIterator , typename OutputIterator , typename Predicate > |
__host__ __device__ OutputIterator | thrust::remove_copy_if (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, InputIterator first, InputIterator last, OutputIterator result, Predicate pred) |
|
template<typename InputIterator , typename OutputIterator , typename Predicate > |
OutputIterator | thrust::remove_copy_if (InputIterator first, InputIterator last, OutputIterator result, Predicate pred) |
|
template<typename DerivedPolicy , typename ForwardIterator , typename InputIterator , typename Predicate > |
__host__ __device__ ForwardIterator | thrust::remove_if (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, ForwardIterator first, ForwardIterator last, InputIterator stencil, Predicate pred) |
|
template<typename ForwardIterator , typename InputIterator , typename Predicate > |
ForwardIterator | thrust::remove_if (ForwardIterator first, ForwardIterator last, InputIterator stencil, Predicate pred) |
|
template<typename DerivedPolicy , typename InputIterator1 , typename InputIterator2 , typename OutputIterator , typename Predicate > |
__host__ __device__ OutputIterator | thrust::remove_copy_if (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, InputIterator1 first, InputIterator1 last, InputIterator2 stencil, OutputIterator result, Predicate pred) |
|
template<typename InputIterator1 , typename InputIterator2 , typename OutputIterator , typename Predicate > |
OutputIterator | thrust::remove_copy_if (InputIterator1 first, InputIterator1 last, InputIterator2 stencil, OutputIterator result, Predicate pred) |
|
template<typename DerivedPolicy , typename ForwardIterator > |
__host__ __device__ ForwardIterator | thrust::unique (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, ForwardIterator first, ForwardIterator last) |
|
template<typename ForwardIterator > |
ForwardIterator | thrust::unique (ForwardIterator first, ForwardIterator last) |
|
template<typename DerivedPolicy , typename ForwardIterator , typename BinaryPredicate > |
__host__ __device__ ForwardIterator | thrust::unique (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, ForwardIterator first, ForwardIterator last, BinaryPredicate binary_pred) |
|
template<typename ForwardIterator , typename BinaryPredicate > |
ForwardIterator | thrust::unique (ForwardIterator first, ForwardIterator last, BinaryPredicate binary_pred) |
|
template<typename DerivedPolicy , typename InputIterator , typename OutputIterator > |
__host__ __device__ OutputIterator | thrust::unique_copy (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, InputIterator first, InputIterator last, OutputIterator result) |
|
template<typename InputIterator , typename OutputIterator > |
OutputIterator | thrust::unique_copy (InputIterator first, InputIterator last, OutputIterator result) |
|
template<typename DerivedPolicy , typename InputIterator , typename OutputIterator , typename BinaryPredicate > |
__host__ __device__ OutputIterator | thrust::unique_copy (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, InputIterator first, InputIterator last, OutputIterator result, BinaryPredicate binary_pred) |
|
template<typename InputIterator , typename OutputIterator , typename BinaryPredicate > |
OutputIterator | thrust::unique_copy (InputIterator first, InputIterator last, OutputIterator result, BinaryPredicate binary_pred) |
|
template<typename DerivedPolicy , typename ForwardIterator1 , typename ForwardIterator2 > |
__host__ __device__ thrust::pair< ForwardIterator1, ForwardIterator2 > | thrust::unique_by_key (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, ForwardIterator1 keys_first, ForwardIterator1 keys_last, ForwardIterator2 values_first) |
|
template<typename ForwardIterator1 , typename ForwardIterator2 > |
thrust::pair< ForwardIterator1, ForwardIterator2 > | thrust::unique_by_key (ForwardIterator1 keys_first, ForwardIterator1 keys_last, ForwardIterator2 values_first) |
|
template<typename DerivedPolicy , typename ForwardIterator1 , typename ForwardIterator2 , typename BinaryPredicate > |
__host__ __device__ thrust::pair< ForwardIterator1, ForwardIterator2 > | thrust::unique_by_key (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, ForwardIterator1 keys_first, ForwardIterator1 keys_last, ForwardIterator2 values_first, BinaryPredicate binary_pred) |
|
template<typename ForwardIterator1 , typename ForwardIterator2 , typename BinaryPredicate > |
thrust::pair< ForwardIterator1, ForwardIterator2 > | thrust::unique_by_key (ForwardIterator1 keys_first, ForwardIterator1 keys_last, ForwardIterator2 values_first, BinaryPredicate binary_pred) |
|
template<typename DerivedPolicy , typename InputIterator1 , typename InputIterator2 , typename OutputIterator1 , typename OutputIterator2 > |
__host__ __device__ thrust::pair< OutputIterator1, OutputIterator2 > | thrust::unique_by_key_copy (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, InputIterator1 keys_first, InputIterator1 keys_last, InputIterator2 values_first, OutputIterator1 keys_result, OutputIterator2 values_result) |
|
template<typename InputIterator1 , typename InputIterator2 , typename OutputIterator1 , typename OutputIterator2 > |
thrust::pair< OutputIterator1, OutputIterator2 > | thrust::unique_by_key_copy (InputIterator1 keys_first, InputIterator1 keys_last, InputIterator2 values_first, OutputIterator1 keys_result, OutputIterator2 values_result) |
|
template<typename DerivedPolicy , typename InputIterator1 , typename InputIterator2 , typename OutputIterator1 , typename OutputIterator2 , typename BinaryPredicate > |
__host__ __device__ thrust::pair< OutputIterator1, OutputIterator2 > | thrust::unique_by_key_copy (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, InputIterator1 keys_first, InputIterator1 keys_last, InputIterator2 values_first, OutputIterator1 keys_result, OutputIterator2 values_result, BinaryPredicate binary_pred) |
|
template<typename InputIterator1 , typename InputIterator2 , typename OutputIterator1 , typename OutputIterator2 , typename BinaryPredicate > |
thrust::pair< OutputIterator1, OutputIterator2 > | thrust::unique_by_key_copy (InputIterator1 keys_first, InputIterator1 keys_last, InputIterator2 values_first, OutputIterator1 keys_result, OutputIterator2 values_result, BinaryPredicate binary_pred) |
|