- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for setCountImpl (0.3 sec)
-
android/guava/src/com/google/common/collect/Multisets.java
: elementsToRetain; return self.elementSet().retainAll(collection); } /** An implementation of {@link Multiset#setCount(Object, int)}. */ static <E extends @Nullable Object> int setCountImpl( Multiset<E> self, @ParametricNullness E element, int count) { checkNonnegative(count, "count"); int oldCount = self.count(element); int delta = count - oldCount; if (delta > 0) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 41.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/Multisets.java
: elementsToRetain; return self.elementSet().retainAll(collection); } /** An implementation of {@link Multiset#setCount(Object, int)}. */ static <E extends @Nullable Object> int setCountImpl( Multiset<E> self, @ParametricNullness E element, int count) { checkNonnegative(count, "count"); int oldCount = self.count(element); int delta = count - oldCount; if (delta > 0) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 41.5K bytes - Viewed (0)