eclipse / eclipse-collections

Eclipse Collections is a collections framework for Java with optimized data structures and a rich, functional and fluent API.
http://www.eclipse.org/collections
2.39k stars 593 forks source link

Optimize `clear` method in `SubList` class #1625

Closed yoa1226 closed 3 weeks ago

yoa1226 commented 4 weeks ago

Current, SubList use remove method of Iterator to implement clear. It should be optimized comparing to Java Standard Library. I will finish it.