Lines Matching defs:multiset

43  * {@link #subMultiset} methods share the same array as the original multiset, preventing that
66 * correctly if an element is modified after being placed in the multiset. For this reason, and to
92 * Returns the empty immutable sorted multiset.
100 * Returns an immutable sorted multiset containing a single element.
111 * Returns an immutable sorted multiset containing the given elements sorted by their natural
122 * Returns an immutable sorted multiset containing the given elements sorted by their natural
133 * Returns an immutable sorted multiset containing the given elements sorted by their natural
145 * Returns an immutable sorted multiset containing the given elements sorted by their natural
157 * Returns an immutable sorted multiset containing the given elements sorted by their natural
173 * Returns an immutable sorted multiset containing the given elements sorted by their natural
183 * Returns an immutable sorted multiset containing the given elements sorted by their natural
188 * <p>Note that if {@code s} is a {@code multiset<String>}, then {@code
191 * returns an {@code ImmutableSortedMultiset<multiset<String>>} containing one element (the given
192 * multiset itself).
213 * Returns an immutable sorted multiset containing the given elements sorted by their natural
231 * Returns an immutable sorted multiset containing the given elements sorted by the given {@code
243 * Returns an immutable sorted multiset containing the given elements sorted by the given {@code
256 ImmutableSortedMultiset<E> multiset = (ImmutableSortedMultiset<E>) elements;
257 if (comparator.equals(multiset.comparator())) {
258 if (multiset.isPartialView()) {
259 return copyOfSortedEntries(comparator, multiset.entrySet().asList());
261 return multiset;
272 * Returns an immutable sorted multiset containing the elements of a sorted multiset, sorted by
420 * A builder for creating immutable multiset instances, especially {@code public static final}
482 * @param count the desired count of the element in this multiset
548 SerializedForm(SortedMultiset<E> multiset) {
549 this.comparator = multiset.comparator();
550 int n = multiset.entrySet().size();
554 for (Entry<E> entry : multiset.entrySet()) {