Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for unsafeNull (0.04 sec)

  1. android/guava/src/com/google/common/collect/HashBiMap.java

           */
          return (index == ABSENT) ? unsafeNull() : uncheckedCastNullableTToT(values[index]);
        }
    
        @Override
        @ParametricNullness
        public V setValue(@ParametricNullness V value) {
          updateIndex();
          if (index == ABSENT) {
            HashBiMap.this.put(key, value);
            return unsafeNull(); // See the discussion in getValue().
          }
          /*
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/CompactHashMap.java

    import static com.google.common.collect.Hashing.smearedHash;
    import static com.google.common.collect.NullnessCasts.uncheckedCastNullableTToT;
    import static com.google.common.collect.NullnessCasts.unsafeNull;
    import static java.lang.Math.max;
    import static java.lang.Math.min;
    import static java.util.Objects.requireNonNull;
    
    import com.google.common.annotations.GwtIncompatible;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 35.7K bytes
    - Viewed (0)
Back to top