Returns true if this multiset contains at least one occurrence of each element in the specified collection. This method refines Collection#containsAll to further specify that it may not throw an exception in response to any of elements being null or of the wrong ty
(Collection<?> elements)
| 375 | * @throws NullPointerException if {@code elements} is null |
| 376 | */ |
| 377 | @Override |
| 378 | boolean containsAll(Collection<?> elements); |
| 379 | |
| 380 | /** |
no outgoing calls
no test coverage detected