Home | History | Annotate | Download | only in collect

Lines Matching full:elements

177    * elements.
294 final Iterator<E> elements = delegate.iterator();
297 return elements.hasNext();
300 return immutableEntry(elements.next(), 1);
303 elements.remove();
314 * Returns the expected number of distinct elements given the specified
315 * elements. The number of distinct elements is only computed if {@code
316 * elements} is an instance of {@code Multiset}; otherwise the default value
319 static int inferDistinctElements(Iterable<?> elements) {
320 if (elements instanceof Multiset) {
321 return ((Multiset<?>) elements).elementSet().size();
430 * " x " (space, x and space) followed by the count. Elements and counts are