mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-13 05:26:09 +00:00
@@ -10,6 +10,12 @@ public:
|
||||
inline pair() {}
|
||||
inline pair(const L& first, const R& second) : first(first), second(second) {}
|
||||
|
||||
inline pair& operator=(const pair& other) {
|
||||
first = other.first;
|
||||
second = other.second;
|
||||
return *this;
|
||||
}
|
||||
|
||||
L first;
|
||||
R second;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user