Returns an immutable multiset containing the given elements, in the "grouped iteration order" described in the class documentation. @throws NullPointerException if any of elements is null @since 6.0
(E[] elements)
| 146 | |
| 147 | |
| 148 | public static <E> ImmutableMultiset<E> copyOf(E[] elements) { |
| 149 | return copyFromElements(elements); |
| 150 | } |
| 151 | |
| 152 | /** |
| 153 | * Returns an immutable multiset containing the given elements, in the "grouped iteration order" |
no test coverage detected