Thrust
|
Equality between ranges. More...
#include <thrust/detail/config.h>
#include <thrust/detail/execution_policy.h>
#include <thrust/detail/equal.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 InputIterator1 , typename InputIterator2 > | |
__host__ __device__ bool | thrust::equal (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, InputIterator1 first1, InputIterator1 last1, InputIterator2 first2) |
template<typename InputIterator1 , typename InputIterator2 > | |
bool | thrust::equal (InputIterator1 first1, InputIterator1 last1, InputIterator2 first2) |
template<typename DerivedPolicy , typename InputIterator1 , typename InputIterator2 , typename BinaryPredicate > | |
__host__ __device__ bool | thrust::equal (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, BinaryPredicate binary_pred) |
template<typename InputIterator1 , typename InputIterator2 , typename BinaryPredicate > | |
bool | thrust::equal (InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, BinaryPredicate binary_pred) |
Equality between ranges.