Adds or removes the necessary occurrences of an element such that the element attains the desired count. @param element the element to add or remove occurrences of; may be null only if explicitly allowed by the implementation @param count the desired count of the element in this multiset @retur
(E element, int count)
| 160 | * count} is zero, the implementor may optionally return zero instead. |
| 161 | */ |
| 162 | @CanIgnoreReturnValue |
| 163 | int setCount(E element, int count); |
| 164 | |
| 165 | /** |
no outgoing calls
no test coverage detected