operator== Operator (C++ AMP)

Determines whether the specified arguments are equal.

template <
   int _Rank,
   template <int> class _Tuple_type
>
bool operator==(
   const _Tuple_type<_Rank>& _Lhs,
   const _Tuple_type<_Rank>& _Rhs
) restrict(amp);

Parameters

  • _Rank
    The rank of the tuple arguments.

  • _Lhs
    One of the tuples to compare.

  • _Rhs
    One of the tuples to compare.

Return Value

true if the tuples are equal; otherwise, false.

Requirements

Header: amp.h

Namespace: concurrency

See Also

Reference

Concurrency Namespace (C++ AMP)