- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for containsKeyImpl (0.19 sec)
-
guava/src/com/google/common/collect/ForwardingMap.java
* 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 * ForwardingMap#clear}, {@link ForwardingMap#containsValue}, {@link ForwardingMap#isEmpty},Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 17:32:30 UTC 2025 - 9.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingMap.java
* 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 * ForwardingMap#clear}, {@link ForwardingMap#containsValue}, {@link ForwardingMap#isEmpty},Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 17:32:30 UTC 2025 - 9.8K bytes - Viewed (0) -
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, @Nullable Object key) { return Iterators.contains(keyIterator(map.entrySet().iterator()), key); } /** An implementation of {@link Map#containsValue}. */
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Nov 17 22:50:48 UTC 2025 - 163.5K bytes - Viewed (0) -
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, @Nullable Object key) { return Iterators.contains(keyIterator(map.entrySet().iterator()), key); } /** An implementation of {@link Map#containsValue}. */
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Sep 23 17:50:58 UTC 2025 - 157.6K bytes - Viewed (0)