- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for removeValuesForKey (0.07 sec)
-
guava/src/com/google/common/collect/AbstractMapBasedMultimap.java
return new NavigableKeySet(sortedMap().tailMap(fromElement, inclusive)); } } /** Removes all values for the provided key. */ private void removeValuesForKey(@Nullable Object key) { Collection<V> collection = Maps.safeRemove(map, key); if (collection != null) { int count = collection.size(); collection.clear(); totalSize -= count;
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Nov 17 22:50:48 UTC 2025 - 48.4K bytes - Viewed (0)