Speclib  0.1.2
The library for writing better CUDA libraries
sp::Pair< First, Second > Struct Template Reference

It's like std::pair, but worse. More...

#include <Pair.hpp>

Public Member Functions

constexpr Pair (const First first, const Second second)
 
bool operator== (const Pair< First, Second > &other) const
 

Public Attributes

First first
 
Second second
 

Detailed Description

template<typename First, typename Second>
struct sp::Pair< First, Second >

It's like std::pair, but worse.

This is only useful for crazy constexpr code, since the crudeness of this pair allows you to save build time.

Template Parameters
First
Second