Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PROVIDED (0.14 sec)

  1. guava/src/com/google/common/base/Equivalence.java

        if (a == b) {
          return true;
        }
        if (a == null || b == null) {
          return false;
        }
        return doEquivalent(a, b);
      }
    
      /**
       * @deprecated Provided only to satisfy the {@link BiPredicate} interface; use {@link #equivalent}
       *     instead.
       * @since 21.0
       */
      @Deprecated
      @Override
      public final boolean test(@CheckForNull T t, @CheckForNull T u) {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Equivalence.java

       *
       * <p>The {@code hash} has the following properties:
       *
       * <ul>
       *   <li>It is <i>consistent</i>: for any reference {@code x}, multiple invocations of {@code
       *       hash(x}} consistently return the same value provided {@code x} remains unchanged
       *       according to the definition of the equivalence. The hash need not remain consistent from
       *       one execution of an application to another execution of the same application.
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Apr 24 01:41:50 GMT 2024
    - 14.1K bytes
    - Viewed (0)
Back to top