Home | History | Annotate | Download | only in util

Lines Matching refs:second

28     public final S second;
34 * @param second the second object in the pair
36 public Pair(F first, S second) {
38 this.second = second;
55 return Objects.equal(p.first, first) && Objects.equal(p.second, second);
65 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode());
71 * @param b the second object in the pair