Line data Source code
1 : class Pair<T, S> { 2 2 : Pair(this.left, this.right); 3 : 4 : final T left; 5 : final S right; 6 : }