Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for standardContainsKey (0.06 seconds)

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

       * iterator} method of {@link #entrySet}. If you override {@link #entrySet}, you may wish to
       * override {@link #containsKey} to forward to this implementation.
       *
       * @since 7.0
       */
      protected boolean standardContainsKey(@Nullable Object key) {
        return Maps.containsKeyImpl(this, key);
      }
    
      /**
       * A sensible implementation of {@link Map#values} in terms of the following methods: {@link
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Aug 06 17:32:30 GMT 2025
    - 9.8K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/collect/ForwardingMap.java

       * iterator} method of {@link #entrySet}. If you override {@link #entrySet}, you may wish to
       * override {@link #containsKey} to forward to this implementation.
       *
       * @since 7.0
       */
      protected boolean standardContainsKey(@Nullable Object key) {
        return Maps.containsKeyImpl(this, key);
      }
    
      /**
       * A sensible implementation of {@link Map#values} in terms of the following methods: {@link
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Aug 06 17:32:30 GMT 2025
    - 9.8K bytes
    - Click Count (0)
Back to Top