- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for standardSetCount (0.21 seconds)
-
guava-tests/test/com/google/common/collect/ForwardingMultisetTest.java
return standardHashCode(); } @Override public boolean setCount(T element, int oldCount, int newCount) { return standardSetCount(element, oldCount, newCount); } @Override public int setCount(T element, int count) { return standardSetCount(element, count); } @Override public Set<T> elementSet() { return new StandardElementSet(); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Jul 16 20:34:52 GMT 2025 - 11.8K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ForwardingMultiset.java
* override any of these methods, you may wish to override {@link #setCount(Object, int)} to * forward to this implementation. * * @since 7.0 */ protected int standardSetCount(@ParametricNullness E element, int count) { return Multisets.setCountImpl(this, element, count); } /** * A sensible definition of {@link #setCount(Object, int, int)} in terms of {@link #count(Object)}Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 10.3K bytes - Click Count (0) -
guava/src/com/google/common/collect/ForwardingMultiset.java
* override any of these methods, you may wish to override {@link #setCount(Object, int)} to * forward to this implementation. * * @since 7.0 */ protected int standardSetCount(@ParametricNullness E element, int count) { return Multisets.setCountImpl(this, element, count); } /** * A sensible definition of {@link #setCount(Object, int, int)} in terms of {@link #count(Object)}Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 10.3K bytes - Click Count (0)