+ Added Pair structure and edited SectionedKeyvalue

This commit is contained in:
Matthew Cech
2019-04-12 21:15:10 -07:00
parent 047bc97238
commit 41326e1f31
2 changed files with 14 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
package dataStructures;
// A generic class designed to hold two types, as a first and second variable.
public class Pair<T1, T2>
{
public T1 First;
public T2 Second;
public Pair(T1 first, T2 second)
{
this.First = first;
this.Second = second;
}
}