guava icon indicating copy to clipboard operation
guava copied to clipboard

Improve efficiency of bulk removals in transformed lists.

Open hwaite opened this issue 4 years ago • 0 comments

Override removeRange(int,int) for Lists.TransformingSequentialList and Lists.TransformingRandomAccessList so that source list has opportunity to do more efficient deletions. Call fromList.subList(from, to).clear() instead of removing with iterator. Re-request of ignored #3372.

hwaite avatar Oct 25 '21 14:10 hwaite