Adds a number of occurrences of an element to this multiset. Note that if occurrences == 1, this method has the identical effect to #add(Object). This method is functionally equivalent (except in the case of overflow) to the call {@code addAll(Collections.nCopies(element, occurrences
(@Nullable E element, int occurrences)
| 128 | * occurrences} is zero, the implementation may opt to return normally. |
| 129 | */ |
| 130 | @CanIgnoreReturnValue |
| 131 | int add(@Nullable E element, int occurrences); |
| 132 | |
| 133 | /** |
no outgoing calls