Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for removeFromBothMaps (0.1 seconds)

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

      }
    
      @CanIgnoreReturnValue
      @Override
      public @Nullable V remove(@Nullable Object key) {
        return containsKey(key) ? removeFromBothMaps(key) : null;
      }
    
      @CanIgnoreReturnValue
      @ParametricNullness
      private V removeFromBothMaps(@Nullable Object key) {
        // The cast is safe because the callers of this method first check that the key is present.
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Sep 22 15:50:50 GMT 2025
    - 14.3K bytes
    - Click Count (0)
Back to Top