{@inheritDoc} <p>Elements that occur multiple times in the multiset will be passed to the {@code Consumer} correspondingly many times, though not necessarily sequentially.
(Consumer<? super E> action)
| 464 | * correspondingly many times, though not necessarily sequentially. |
| 465 | */ |
| 466 | @Override |
| 467 | default void forEach(Consumer<? super E> action) { |
| 468 | checkNotNull(action); |
| 469 | entrySet() |
no outgoing calls