Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ForMapWithDefault (0.11 sec)

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

              ? uncheckedCastNullableTToT(result)
              : defaultValue;
        }
    
        @Override
        public boolean equals(@Nullable Object o) {
          if (o instanceof ForMapWithDefault) {
            ForMapWithDefault<?, ?> that = (ForMapWithDefault<?, ?>) o;
            return map.equals(that.map) && Objects.equals(defaultValue, that.defaultValue);
          }
          return false;
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 17:32:30 UTC 2025
    - 15.4K bytes
    - Viewed (0)
Back to top