Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for containsKeyImpl (0.26 sec)

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

       * override {@link #containsKey} to forward to this implementation.
       *
       * @since 7.0
       */
      protected boolean standardContainsKey(@CheckForNull Object key) {
        return Maps.containsKeyImpl(this, key);
      }
    
      /**
       * A sensible implementation of {@link Map#values} in terms of the following methods: {@link
       * ForwardingMap#clear}, {@link ForwardingMap#containsValue}, {@link ForwardingMap#isEmpty},
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri May 12 15:26:39 GMT 2023
    - 9.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ForwardingMap.java

       * override {@link #containsKey} to forward to this implementation.
       *
       * @since 7.0
       */
      protected boolean standardContainsKey(@CheckForNull Object key) {
        return Maps.containsKeyImpl(this, key);
      }
    
      /**
       * A sensible implementation of {@link Map#values} in terms of the following methods: {@link
       * ForwardingMap#clear}, {@link ForwardingMap#containsValue}, {@link ForwardingMap#isEmpty},
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri May 12 15:26:39 GMT 2023
    - 9.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Maps.java

        } catch (ClassCastException | NullPointerException e) {
          return null;
        }
      }
    
      /** An admittedly inefficient implementation of {@link Map#containsKey}. */
      static boolean containsKeyImpl(Map<?, ?> map, @CheckForNull Object key) {
        return Iterators.contains(keyIterator(map.entrySet().iterator()), key);
      }
    
      /** An implementation of {@link Map#containsValue}. */
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
Back to top