Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

      }
    
      @CanIgnoreReturnValue
      @Override
      @CheckForNull
      public V remove(@CheckForNull Object key) {
        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.
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Aug 24 01:40:03 UTC 2023
    - 14.6K bytes
    - Viewed (0)
Back to top