Home | History | Annotate | Download | only in util

Lines Matching refs:spliterator

173      * Creates a <em><a href="Spliterator.html#binding">late-binding</a></em>
174 * and <em>fail-fast</em> {@code Spliterator} over the elements in this set.
176 * <p>The {@code Spliterator} reports {@link Spliterator#SIZED},
177 * {@link Spliterator#DISTINCT}, and {@code ORDERED}. Implementations
182 * <em><a href="Spliterator.html#binding">late-binding</a></em> spliterator
183 * from the set's {@code Iterator}. The spliterator inherits the
185 * The created {@code Spliterator} additionally reports
186 * {@link Spliterator#SUBSIZED}.
188 * @return a {@code Spliterator} over the elements in this set
192 public Spliterator<E> spliterator() {
193 return Spliterators.spliterator(this, Spliterator.DISTINCT | Spliterator.ORDERED);