Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fullEquals (0.15 sec)

  1. guava-tests/test/com/google/common/collect/ImmutableMultisetTest.java

          }
    
          @Override
          public boolean equals(@Nullable Object obj) {
            return obj instanceof TypeWithDuplicates && ((TypeWithDuplicates) obj).a == a;
          }
    
          public boolean fullEquals(@Nullable TypeWithDuplicates other) {
            return other != null && a == other.a && b == other.b;
          }
        }
    
        Collector<TypeWithDuplicates, ?, ImmutableMultiset<TypeWithDuplicates>> collector =
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

            this.a = a;
            this.b = b;
          }
    
          @Override
          public int compareTo(TypeWithDuplicates o) {
            return Integer.compare(a, o.a);
          }
    
          public boolean fullEquals(@Nullable TypeWithDuplicates other) {
            return other != null && a == other.a && b == other.b;
          }
        }
    
        Collector<TypeWithDuplicates, ?, ImmutableSortedSet<TypeWithDuplicates>> collector =
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 46.7K bytes
    - Viewed (0)
Back to top