Java / Concurrent collections
What is Spliterator in Java 8?
Spliterator stands for Splitable Iterator. Similar to Iterator and ListIterator, It is also an Iterator interface.
Spliterator is used to split given element set into multiple sets so that we can perform operations/calculations on each set in different threads independently, possibly taking advantage of parallelism. It is designed as parallel analogue of Iterator.
More Related questions...