Template Function thrust::operator>=¶
Function Documentation¶
-
template<typename T1, typename T2>__host__ __device__ bool thrust::operator>=(const pair < T1, T2 > & x, const pair < T1, T2 > & y) This operator tests two pairs for descending ordering or equivalence.
- Return
trueif and only if!(x < y).- Parameters
x: The firstpairto compare.y: The secondpairto compare.
- Template Parameters
T1: is a model of LessThan Comparable.T2: is a model of LessThan Comparable.