Searched defs:Spliterator (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DSpliterator.java34 * of elements covered by a Spliterator could be, for example, an array, a
37 * <p>A Spliterator may traverse elements individually ({@link
41 * <p>A Spliterator may also partition off some of its elements (using
42 * {@link #trySplit}) as another Spliterator, to be used in
43 * possibly-parallel operations. Operations using a Spliterator that
46 * and splitting exhaust elements; each Spliterator is useful for only a single
49 * <p>A Spliterator also reports a set of {@link #characteristics()} of its
53 * be employed by Spliterator clients to control, specialize or simplify
54 * computation. For example, a Spliterator for a {@link Collection} would
55 * report {@code SIZED}, a Spliterator fo
296 public interface Spliterator<T> { interface
[all...]

Completed in 57 milliseconds