Thrust
|
Logical operations on ranges. More...
#include <thrust/detail/config.h>
#include <thrust/detail/execution_policy.h>
#include <thrust/detail/logical.inl>
Go to the source code of this file.
Namespaces | |
thrust | |
thrust is the top-level namespace which contains all Thrust functions and types. | |
Functions | |
template<typename DerivedPolicy , typename InputIterator , typename Predicate > | |
__host__ __device__ bool | thrust::all_of (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, InputIterator first, InputIterator last, Predicate pred) |
template<typename InputIterator , typename Predicate > | |
bool | thrust::all_of (InputIterator first, InputIterator last, Predicate pred) |
template<typename DerivedPolicy , typename InputIterator , typename Predicate > | |
__host__ __device__ bool | thrust::any_of (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, InputIterator first, InputIterator last, Predicate pred) |
template<typename InputIterator , typename Predicate > | |
bool | thrust::any_of (InputIterator first, InputIterator last, Predicate pred) |
template<typename DerivedPolicy , typename InputIterator , typename Predicate > | |
__host__ __device__ bool | thrust::none_of (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, InputIterator first, InputIterator last, Predicate pred) |
template<typename InputIterator , typename Predicate > | |
bool | thrust::none_of (InputIterator first, InputIterator last, Predicate pred) |
Logical operations on ranges.