template<
typename A,
typename B>
struct Equals< A, B >
Type equality test.
- Deprecated:
- [Since 1.16.0] The cub::Equals APIs are deprecated. Use std::is_same instead.
|
static constexpr int | VALUE = std::is_same<A, B>::value ? 1 : 0 |
|
static constexpr int | NEGATE = VALUE ? 0 : 1 |
|
template<typename A , typename B >
constexpr int Equals< A, B >::VALUE = std::is_same<A, B>::value ? 1 : 0 |
|
static |
template<typename A , typename B >
The documentation for this struct was generated from the following file: