Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for fullEquals (0.34 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 =
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 25.1K bytes
    - Viewed (0)
Back to top