Home | History | Annotate | Download | only in impl

Lines Matching defs:second

13  * A pair of objects: first and second.
16 * @param <S> second object type
21 public final S second;
23 protected Pair(F first, S second) {
25 this.second = second;
31 * @param second must be non-null
34 public static <F, S> Pair<F, S> of(F first, S second) {
35 if (first == null || second == null) {
38 return new Pair<F, S>(first, second);
50 return first.equals(rhs.first) && second.equals(rhs.second);
55 return first.hashCode() * 37 + second.hashCode();