[glacier] Move Pair to glacier.

This commit is contained in:
Drew Galbraith 2023-06-21 20:47:40 -07:00
parent c2dfe17363
commit 0ec2fa3e76
3 changed files with 8 additions and 3 deletions

View file

@ -1,13 +0,0 @@
#pragma once
template <typename T, typename U>
class Pair {
public:
Pair(const T& first, const U& second) : first_(first), second_(second) {}
T& first() { return first_; }
U& second() { return second_; }
private:
T first_;
U second_;
};