|
template<typename DerivedPolicy , typename InputIterator , typename T > |
__host__ __device__ InputIterator | thrust::find (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, InputIterator first, InputIterator last, const T &value) |
|
template<typename InputIterator , typename T > |
InputIterator | thrust::find (InputIterator first, InputIterator last, const T &value) |
|
template<typename DerivedPolicy , typename InputIterator , typename Predicate > |
__host__ __device__ InputIterator | thrust::find_if (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, InputIterator first, InputIterator last, Predicate pred) |
|
template<typename InputIterator , typename Predicate > |
InputIterator | thrust::find_if (InputIterator first, InputIterator last, Predicate pred) |
|
template<typename DerivedPolicy , typename InputIterator , typename Predicate > |
__host__ __device__ InputIterator | thrust::find_if_not (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, InputIterator first, InputIterator last, Predicate pred) |
|
template<typename InputIterator , typename Predicate > |
InputIterator | thrust::find_if_not (InputIterator first, InputIterator last, Predicate pred) |
|
template<typename DerivedPolicy , typename InputIterator1 , typename InputIterator2 > |
__host__ __device__ thrust::pair< InputIterator1, InputIterator2 > | thrust::mismatch (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, InputIterator1 first1, InputIterator1 last1, InputIterator2 first2) |
|
template<typename InputIterator1 , typename InputIterator2 > |
thrust::pair< InputIterator1, InputIterator2 > | thrust::mismatch (InputIterator1 first1, InputIterator1 last1, InputIterator2 first2) |
|
template<typename DerivedPolicy , typename InputIterator1 , typename InputIterator2 , typename BinaryPredicate > |
__host__ __device__ thrust::pair< InputIterator1, InputIterator2 > | thrust::mismatch (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, BinaryPredicate pred) |
|
template<typename InputIterator1 , typename InputIterator2 , typename BinaryPredicate > |
thrust::pair< InputIterator1, InputIterator2 > | thrust::mismatch (InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, BinaryPredicate pred) |
|
template<typename DerivedPolicy , typename ForwardIterator , typename Predicate > |
__host__ __device__ ForwardIterator | thrust::partition_point (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, ForwardIterator first, ForwardIterator last, Predicate pred) |
|
template<typename ForwardIterator , typename Predicate > |
ForwardIterator | thrust::partition_point (ForwardIterator first, ForwardIterator last, Predicate pred) |
|