Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Walters (0.19 sec)

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

        return containsKey(key) ? removeFromBothMaps(key) : null;
      }
    
      @CanIgnoreReturnValue
      @ParametricNullness
      private V removeFromBothMaps(@CheckForNull Object key) {
        // The cast is safe because the callers of this method first check that the key is present.
        V oldValue = uncheckedCastNullableTToT(delegate.remove(key));
        removeFromInverseMap(oldValue);
        return oldValue;
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Aug 24 01:40:03 GMT 2023
    - 13.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/AbstractBiMap.java

        return containsKey(key) ? removeFromBothMaps(key) : null;
      }
    
      @CanIgnoreReturnValue
      @ParametricNullness
      private V removeFromBothMaps(@CheckForNull Object key) {
        // The cast is safe because the callers of this method first check that the key is present.
        V oldValue = uncheckedCastNullableTToT(delegate.remove(key));
        removeFromInverseMap(oldValue);
        return oldValue;
      }
    
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Aug 24 01:40:03 GMT 2023
    - 14.6K bytes
    - Viewed (0)
Back to top