mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-06 19:15:52 +00:00
19 lines
288 B
C++
19 lines
288 B
C++
#ifndef _RSTL_PAIR
|
|
#define _RSTL_PAIR
|
|
|
|
#include "types.h"
|
|
|
|
namespace rstl {
|
|
template < typename L, typename R >
|
|
class pair {
|
|
public:
|
|
pair() {}
|
|
pair(const L& first, const R& second) : first(first), second(second) {}
|
|
|
|
L first;
|
|
R second;
|
|
};
|
|
} // namespace rstl
|
|
|
|
#endif // _RSTL_PAIR
|