Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CompositionPredicate (0.25 sec)

  1. android/guava/src/com/google/common/base/Predicates.java

          return p.apply(f.apply(a));
        }
    
        @Override
        public boolean equals(@CheckForNull Object obj) {
          if (obj instanceof CompositionPredicate) {
            CompositionPredicate<?, ?> that = (CompositionPredicate<?, ?>) obj;
            return f.equals(that.f) && p.equals(that.p);
          }
          return false;
        }
    
        @Override
        public int hashCode() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 23.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Predicates.java

          return p.apply(f.apply(a));
        }
    
        @Override
        public boolean equals(@CheckForNull Object obj) {
          if (obj instanceof CompositionPredicate) {
            CompositionPredicate<?, ?> that = (CompositionPredicate<?, ?>) obj;
            return f.equals(that.f) && p.equals(that.p);
          }
          return false;
        }
    
        @Override
        public int hashCode() {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 23.1K bytes
    - Viewed (0)
Back to top