MT Core (C++)
Core library for replacing C++ standard in project usage
Loading...
Searching...
No Matches
mtcore::Pair< T1, T2 > Struct Template Reference

Represents a pair of elements Useful to avoid having to have many micro structs. More...

#include <pair.hpp>

Public Attributes

T1 first
 
T2 second
 

Detailed Description

template<typename T1, typename T2>
struct mtcore::Pair< T1, T2 >

Represents a pair of elements Useful to avoid having to have many micro structs.

Template Parameters
T1First element type
T2Second element type

Definition at line 31 of file pair.hpp.

Member Data Documentation

◆ first

template<typename T1, typename T2>
T1 mtcore::Pair< T1, T2 >::first

Definition at line 32 of file pair.hpp.

◆ second

template<typename T1, typename T2>
T2 mtcore::Pair< T1, T2 >::second

Definition at line 33 of file pair.hpp.


The documentation for this struct was generated from the following file: