template struct gpr::PairΒΆ

A simple pair with identical datatypes.

#include <Structures.h>
 
template <typename T>
struct Pair {
    // fields
 
    T first;
    T second;
};