2022-10-09 05:13:17 +00:00
|
|
|
#ifndef _RSTL_PAIR
|
|
|
|
#define _RSTL_PAIR
|
2022-04-10 00:17:06 +00:00
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
|
|
|
namespace rstl {
|
|
|
|
template < typename L, typename R >
|
|
|
|
class pair {
|
|
|
|
public:
|
|
|
|
inline pair() {}
|
|
|
|
inline pair(const L& first, const R& second) : first(first), second(second) {}
|
2022-04-11 22:42:08 +00:00
|
|
|
|
2022-10-10 21:46:32 +00:00
|
|
|
inline pair& operator=(const pair& other) {
|
|
|
|
first = other.first;
|
|
|
|
second = other.second;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2022-04-11 22:42:08 +00:00
|
|
|
L first;
|
|
|
|
R second;
|
2022-04-10 00:17:06 +00:00
|
|
|
};
|
|
|
|
} // namespace rstl
|
|
|
|
|
2022-10-09 05:13:17 +00:00
|
|
|
#endif // _RSTL_PAIR
|