eclipse/eclipse-collections

A bug has been identified in addAllAtIndex of BooleanArrayList

goldbal330 opened this issue · 1 comments

Each of the invocations bellow throw IndexOutOfBoundException

new BooleanArrayList(true, false, true).addAllAtIndex(0, false, true);
new BooleanArrayList(true, false, true).addAllAtIndex(1, false, true, true);

I can help out with this